我在ng重複中有ng重複。我在這兩個級別獲得索引,但我不能:如何獲得嵌套ng重複中的索引
<tbody>
<tr ng-repeat="element in body">
<td ng-repeat="h in header" style="width:{{h.width}}px">
<div col="{{$parent.$parent.$index}}" row="{{$parent.$index}}">{{element[h.column]}}</div>
<td>
</tr>
</tbody>
這裏也是一個plnkr。 http://plnkr.co/edit/dGoN43HzQefVpCsp2R3j
問題是「col」的值永遠不會被填充。它不捕獲索引。 誰能幫助
你想設置外部循環索引到col和內部循環索引到行嗎? –