我有一个总是返回 20 个项目的数组。但是,如果返回的项目少于 20 个,则返回一个 " " 而不是减少数组中的数量。
例如,myArray
有 20 个项目(只有 15 个值)。
$scope.myArray = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", " ", " ", " ", " ", " "]
我想根据 myArray 中的项目中填充的数量对某些元素执行 ng-show/hide/if。
最初我尝试过:
<div ng-show="myArray.length > 10">
Show if more than 10 items
</div>
<div ng-show="myArray.length > 15">
Show if more than 15 items
</div>
<div ng-show="myArray.length > 19">
Show if more than 19 items
</div>
当然,以上所有内容都会显示,因为总是有 20 件物品被退回。
我可以通过 ng-show/hide/if 来实现这一点,而不必在我的控制器中编写额外的 JS 吗?