AngularJS:找到原始数组中过滤值的索引位置

前端之家收集整理的这篇文章主要介绍了AngularJS:找到原始数组中过滤值的索引位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$scope.data = [
    {
    "name": "Jim","id" : 25
    },{
    "name": "Jerry","id": 27
    },{
    "name": "Rithika","id": 20
    }
    ];

    <div ng-repeat="person in data | filter: {id:20}">
        {{parent_index}}
    </div>

parent_index – 实际数组中过滤的元素的索引。

在这个例子中,parent_index应该返回2.怎么找到呢?

find the index position of filtered value in the original array

尝试这一个:

<div ng-repeat="person in data | filter: {id:20}">
    {{data.indexOf(person)}}
</div>

输出:2

演示Fiddle

原文链接:https://www.f2er.com/angularjs/145219.html

猜你在找的Angularjs相关文章