如何在AngularJs中使用ng-repeat过滤(键,值)?

我正在尝试做类似的事情:

<div ng-controller="TestCtrl">

<div ng-repeat="(k,v) in items | filter:hasSecurityId">

{{k}} {{v.pos}}

</div>

</div>

AngularJs部分:

function TestCtrl($scope) 

{

$scope.items = {

'A2F0C7':{'secId':'12345', 'pos':'a20'},

'C8B3D1':{'pos':'b10'}

};

$scope.hasSecurityId = function(k,v)

{

return v.hasOwnProperty('secId');

}

}

但是不知何故,它向我展示了所有物品。如何过滤(键,值)?

回答:

过滤器只能通过angular的API应用于数组,而不能应用于对象-

“从数组中选择项的子集,并将其作为新数组返回。”

您在此处有两个选择:

1)移至$scope.items数组或

2)预过滤ng-repeat项目,如下所示:

<div ng-repeat="(k,v) in filterSecId(items)">

{{k}} {{v.pos}}

</div>

并在控制器上:

$scope.filterSecId = function(items) {

var result = {};

angular.forEach(items, function(value, key) {

if (!value.hasOwnProperty('secId')) {

result[key] = value;

}

});

return result;

}

以上是 如何在AngularJs中使用ng-repeat过滤(键,值)? 的全部内容, 来源链接: utcz.com/qa/403477.html

回到顶部