当数组长度为零时,angularjs – ng-show

前端之家收集整理的这篇文章主要介绍了当数组长度为零时,angularjs – ng-show前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是AngularJS的初学者。我在“ng-show”的帮助下,在过滤过程中尝试显示“No Tag Found”。

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>

当我键入除数组值之外的任何值时,我不能使用上面的代码获得“找不到标记”。请帮忙。谢谢。

如果您在ng-repeat中进行过滤,则必须对ng-show应用相同的过滤器。如果没有,ng-show将总是引用完整的数组:
<div ng-show="!(tags| filter:nameText).length">No Tag Found</div>

工作小提琴:http://jsfiddle.net/HB7LU/3149/

原文链接:https://www.f2er.com/angularjs/145294.html

猜你在找的Angularjs相关文章