AngularJS 1.3+
เนื่องจาก AngularJS 1.3 คุณสามารถใช้debounce
คุณสมบัติที่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);
};
}
]);
-- หรือ --
ตรวจสอบ Fiddle
ก่อน AngularJS 1.3
คุณจะต้องใช้ $ timeout เพื่อเพิ่มการหน่วงเวลาและอาจด้วยการใช้ $ timeout.cancel (previoustimeout) คุณสามารถยกเลิกการหมดเวลาก่อนหน้านี้และเรียกใช้การหมดเวลาใหม่ได้ (ช่วยป้องกันไม่ให้มีการดำเนินการกรองหลาย ๆ ครั้งภายใน a ช่วงเวลา)
นี่คือตัวอย่าง:
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$scope.FilterByName = function () { $timeout(_filterByName , 500)