我是AngularJS的初學者。我正嘗試在「ng-show」的幫助下在過濾過程中顯示「No Tag Found」。ng-show當數組長度爲零時
JS:
function simpleController($scope)
{
$scope.tags = ['HTML','CSS','Jquery','Bootstrap','AngularJS'];
}
HTML:
<div ng-controller="simpleController">
<input class="txt" type="text" ng-model="nameText" />
<div>
<ul>
<li ng-repeat="myKeys in tags| filter:nameText">{{myKeys}}</li>
</ul>
<div ng-show="!tags.length">No Tag Found</div>
</div>
</div>
當我鍵入比陣列以外的任何值VALES,我沒能獲得 「否標籤找到」 使用上述碼。請幫忙。謝謝。
謝謝你的小提琴。這就是我正在尋找的:)乾杯 – user2218497
你也可以使用'!count(tags)'[點擊這裏查看Cetia小提琴的修改版](http://jsfiddle.net/HB7LU/26922/) –