ng-repeat中序列号的$ index的替代方法

时间:2017-12-19 17:02:15

标签: javascript angularjs angularjs-ng-repeat

我想显示使用ng-repeat填充的表格数据的序列号。我所拥有的代码就像这样

<tr ng-repeat="usageRecord in applicationUsageDataForReport">
  <td style="text-align: center"><span>{{$index+1}}</span></td>
  <td style="padding-left: 5px; max-width: 200px; text-align: center; width:100px;">
    <span>{{usageRecord.ibu}}</span>
  </td>
</tr>

工作正常。序列号按预期进行。但是当我使用ng-repeatng-if中添加条件时,$index值只会出现那些满足条件的记录,这些条件使序列号按非连续顺序排列。我可以使用的替代方法是什么,以便我能以正确的顺序获取序列号(1,2,3 ..)

1 个答案:

答案 0 :(得分:3)

我创建了一个plnkr,它显示了如何使用ng-repeat过滤器方法。 here's a post

HTML:

<tr ng-repeat="usageRecord in applicationUsageDataForReport | filter:filterFunction">
  <td style="text-align: center"><span>{{$index+1}}</span></td>
  <td style="padding-left: 5px; max-width: 200px; text-align: center; width:100px;"><span>{{usageRecord.ibu}}</span></td>
</tr>

JS:

$scope.filterFunction = function(item){
    /* return true if included false if excluded */
    return true;
};