我试图获取我创建索引的列的索引值。这该怎么做?我的意思如下: -
index value indexed field data
______________ ____________________
0 apple
1 orange
2 manggo
答案 0 :(得分:0)
使用$ index。
更多信息:http://www.youtube.com/watch?v=jEpbjve5iHk
...
<tbody>
<tr ng-repeat="fruit in fruitBasket">
<td>{{$index}}</td> <!-- --------See this line! -->
<td>{{fruit}}</td>
</tr>
</tbody>
...