I've a serious problem with iterating an array (list) in AngularJS.
The structure of the array is -> items{ var1, var2, array2[var3, var4] }.
I want to display this array on a HTML page in a table with ng-repeat as follows:
<tr ng-repeat="item in items">
<td >{{item.var1}}</td>
<td >{{item.var2}}</td>
<td ng-repeat="...">###</td>
</tr>
and in the place of "###" I need to display array2's variables after the right ng-repeat dercription, but I don't know the right syntax for this case. I have tried many solutions, but none of them was helpful.
Thanks for answers! :-)
< td ng-repeat="subitem in item.array2">{{subitem}}< /td >