0
我有一個NG重複以多個濾波器象下面這樣:顯示AngularJS NG重複濾波器長度的多個濾波器
Active Items Found: {{totalActiveItems}}
<div ng-repeat="item in items | filter:searchFilter | filter:{active:true}">
{{item.title}}
</div>
我試圖存儲NG重複外的總數在totalActiveItems
變量。
我看到了這樣的回答:How to display length of filtered ng-repeat data
但它似乎並沒有表現出如何做到這一點的多個過濾器。