我在HTML元素與大致結構的<ul>
如下列表:動態隱藏取決於值列表中Angularjs
<ul id="ElementList">
<li> Some element 1 </li>
<li> Some element 2 </li>
<li> Some element 3 </li>
<li ng-repeat="element in someArray" ng-show = "SomeCondition"> element </li>
</ul>
我想完全隱藏元素列表,如果沒有元素3之後的元素,並顯示完整列表,如果在元素3之後出現任何元素。用於ng-repeat的數組和上面的ng-show的條件是我不能使用或者理解它如何工作的東西(來來自第三方),因此可以只與渲染的東西玩耍。我怎樣才能做到這一點?
使用問題解答解決http://stackoverflow.com/questions/19664691/angular-js-how-to-count-ng-repeat-iterations-which-satisfy-the-custom-filter – labyrinth