本文介绍了仅当查询文本的长度等于 2 时如何开始过滤的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何仅在查询文本的长度等于 2 时才开始过滤?

How can I be able to start filtering only when the querytext's length is equal to 2?

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

I have this code and I do not know how to start filtering only when 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"}];

推荐答案

ng-minlength="2" 添加到 元素.

Add ng-minlength="2" to <input> element.

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

这篇关于仅当查询文本的长度等于 2 时如何开始过滤的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 18:47