一尘不染

如何仅在querytext的长度等于2时才开始过滤

angularjs

仅当querytext的长度等于2时,如何才能开始过滤?

我有这段代码,我不知道如何仅在querytext.length> = 2时才开始过滤

<input type="search" ng-model="querytext">
<ul>
    <li ng-repeat="value in filteredList | filter:querytext>{{value.Name}}</li>
</ul>
$scope.filteredList =[{Id:1,Name:"Soul"},{Id:2,Name:"Croft"}];

阅读 172

收藏
2020-07-04

共1个答案

一尘不染

添加ng-minlength="2"<input>元素。

<input type="search" ng-model="querytext" ng-minlength="2" />
<!--                                      ^^^^^^^^^^^^^^^^ -->
2020-07-04