获取angularjs中表行的$ index数

时间:2014-02-06 13:08:52

标签: angularjs html-table row

如何从 js(angularjs)

中获取以下示例中的索引编号
        <tr ng-hide="group.$hideRows" ng-repeat="customer in group.data>
            <td>({{$index + 1}}) </td> // << get this number ???
            <td>{{customer.name}}</td>
            <td>{{customer.city}}</td>
            <td>{{customer.tel}}</td>
            <td>{{customer.etc}}</td>
            <td>{{customer.reg}}</td>
        </tr>

我的情况下的指数 10 。但是如何将此值作为变量才能在其他函数中使用?

我用$index.length等尝试过。但是我没有得到值10。

1 个答案:

答案 0 :(得分:2)

如果我正确理解问题 - 你会得到数组中的项目数:

group.data.length