我想显示使用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-repeat
在ng-if
中添加条件时,$index
值只会出现那些满足条件的记录,这些条件使序列号按非连续顺序排列。我可以使用的替代方法是什么,以便我能以正确的顺序获取序列号(1,2,3 ..)
答案 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;
};