ngRepeatディレクティブでカスタムフィルターを使用したいと思います。これが私が持っているものです
HTML:
<div ng-app="menuApp">
<ul ng-controller="MenuCtrl">
<li ng-repeat="item in menuItems | rootCategories">
{{item.Name}}
</li>
</ul>
</div>
JS:
angular.module('menuApp', [])
.filter('rootCategories', function() {
return function(item) {
return item.Parent == 0;
};
});
function MenuCtrl($scope) {
$scope.menuItems = [{ "Id": 1, "Name": "Sweep", "Parent": 0 }];
/*
$scope.rootCategories = function(item) {
return item.Parent == 0;
};
*/
};
コメントアウトされた方法を使用してアイテムをフィルタリングしたくないのは、実際のフィルターが提供された例よりも複雑になるためです。何らかの理由で入力パラメータ「item」が定義されていないため、何も表示されません。何が悪いのか教えていただけますか?ありがとうございました。