나는 다음과 같은 것을 시도하고 있습니다.
<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');
}
}
하지만 왠지 모든 항목을 보여주고 있습니다. (키, 값)을 어떻게 필터링 할 수 있습니까?