我有一個離子列表,顯示從另一個列表中選中的項目,但我想顯示一條消息,如果列表爲空。ng-show與localStorage的選擇
的代碼是:
<ion-item ng-repeat='(place, checked) in localStorage.options' ng-if="checked" class="item item-body">
我會怎麼做的NG出現,因爲這不是標準的NG-重複。
我有一個離子列表,顯示從另一個列表中選中的項目,但我想顯示一條消息,如果列表爲空。ng-show與localStorage的選擇
的代碼是:
<ion-item ng-repeat='(place, checked) in localStorage.options' ng-if="checked" class="item item-body">
我會怎麼做的NG出現,因爲這不是標準的NG-重複。
試試這個:
控制器:
$scope.isEmptyObjectEmpty = function(object) {
for(var i in object) {
return true;
}
return false;
};
HTML:
<div class="item item-text-wrap"
ng-if="!isEmptyObjectEmpty(localStorage.options)">
list is empty(msg)
</div>
http://stackoverflow.com/a/25866317/949476? – dfsq