我是 AngularJs 的新手。我想使用 ng-repeat 作为 for(i=0; i < ele.length; i+=2)
我有一个有 4 列的表,我将在其中使用 ng-repeat
<table>
<tr ng-repeat="i in elements">
<th>{{i.T}}</th>
<td>{{i.V}}</td>
<th>{{elements[($index+1)].T}}</th> <!-- This should be next element of the elements array -->
<td>{{elements[($index+1)].V}}</td> <!-- This should be next element of the elements array -->
</tr>
</table>
我需要在一次迭代中访问 2 个元素,迭代增量应该是 2
我希望这是有道理的。请帮我。
请检查这个 html 视图Plunker