AngularJS 1.3+
AngularJS 1.3 sayesinde, hiç kullanmadan bunu çok kolay bir şekilde gerçekleştirmenizi sağlayan debounce
özellikten yararlanabilirsiniz . İşte bir örnek:ngModelOptions
$timeout
HTML:
<div ng-app='app' ng-controller='Ctrl'>
<input type='text' placeholder='Type a name..'
ng-model='vm.name'
ng-model-options='{ debounce: 1000 }'
ng-change='vm.greet()'
/>
<p ng-bind='vm.greeting'></p>
</div>
JS:
angular.module('app', [])
.controller('Ctrl', [
'$scope',
'$log',
function($scope, $log){
var vm = $scope.vm = {};
vm.name = '';
vm.greeting = '';
vm.greet = function greet(){
vm.greeting = vm.name ? 'Hey, ' + vm.name + '!' : '';
$log.info(vm.greeting);
};
}
]);
- VEYA -
Fiddle'ı kontrol edin
AngularJS 1.3'ten önce
Bir gecikme eklemek için $ timeout kullanmanız gerekecek ve muhtemelen $ timeout.cancel (previoustimeout) kullanarak önceki herhangi bir zaman aşımını iptal edebilir ve yenisini çalıştırabilirsiniz (filtrelemenin bir Zaman aralığı)
İşte bir örnek:
app.controller('MainCtrl', function($scope, $timeout) {
var _timeout;
//...
//...
$scope.FilterByName = function() {
if(_timeout) { // if there is already a timeout in process cancel it
$timeout.cancel(_timeout);
}
_timeout = $timeout(function() {
console.log('filtering');
_timeout = null;
}, 500);
}
});
$timeout
500ms için a kullanın .$scope.FilterByName = function () { $timeout(_filterByName , 500)