我有一个似乎无法解决的性能问题。我有一个即时搜索,但它有点滞后,因为它开始搜索每个keyup()
.
JS:
var App = angular.module('App', []);
App.controller('DisplayController', function($scope, $http) {
$http.get('data.json').then(function(result){
$scope.entries = result.data;
});
});
HTML:
<input id="searchText" type="search" placeholder="live search..." ng-model="searchText" />
<div class="entry" ng-repeat="entry in entries | filter:searchText">
<span>{{entry.content}}</span>
</div>
JSON数据甚至没有那么大,只有300KB,我认为我需要完成的是在搜索上延迟约1秒以等待用户完成输入,而不是在每次击键时执行操作。AngularJS 在内部执行此操作,在阅读了此处的文档和其他主题后,我找不到具体的答案。
我将不胜感激有关如何延迟即时搜索的任何指示。