我在引导模式窗口中使用angular-ui-select和~1500项的列表。
用户执行的每个操作都会延迟2秒。 我试图通过使用'minimum-input-length'来提高性能,但过滤器不起作用。
Plunkr示例: https://plnkr.co/edit/H0kbeR4kHfZFjsBnpjBC?p=preview
MY Html:
<ui-select multiple sortable="true" ng-model="vm.selected" theme="select2" style="width: 100%;">
<ui-select-match placeholder="Select...">{{ $item.name }}</ui-select-match>
<ui-select-choices repeat="item in vm.items | filter: $select.search" minimum-input-length="2">
<div ng-bind-html="item.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
如何应用最小字符过滤器?
感谢。
答案 0 :(得分:11)
我使用LimitTo解决了这个问题,检查了搜索长度:
limitTo: ($select.search.length <= 2) ? 0 : undefined"
完整的代码:
<ui-select-choices
repeat="item in ctrl.items | filter: $select.search | limitTo: ($select.search.length <= 2) ? 0 : undefined">
答案 1 :(得分:1)
答案 2 :(得分:0)
如果您还通过orderBy
来订购列表(这将进一步降低速度),请确保将其排在过滤器链的最后:
repeat="item in list | propsFilter: {name:$select.search} | limitTo:100 | orderBy:'name'">
现在它将仅对过滤后的值排序,而不对整个列表排序。这样可以提高性能,但不能解决潜在的问题。