在我的模板中,我使用ng-repeat="obj in list"
。如何對兩個參數和數組進行重排序?
哪裏list
是對象:
0: {
status : "active",
category : "animal"
}
...
而且在默認情況下我有$scope.filter = {}
當我處理點擊:我填這個$scope.filter
:
$scope.filter["categories"].push("animal");
$scope.filter["categories"].push("human");
如何使filter
在ng-repeat
將與數組$scope.filter["categories"]
一起工作,並將找到的元素對應$scope.filter["categories"]
?
最簡單的方法可能是編寫自己的自定義過濾器。 – Lex