我有以下内容可以监视绑定到$ scope.id的<input>
字段。每次输入字段值改变时,执行监视功能:
$scope.$watch("id", function (id) {
// code that does something based on $scope.id
});
有没有办法可以对此进行超时或者使用_lodash进行去抖,以便代码 当用户更改值时,不会在每个按键上执行。
我想要的是什么 延迟一秒,以便在用户停止输入一秒钟之后 手表内的代码块运行。请注意,输入值可能随时发生变化。例如,如果值为“1”或“10”或“1000”,则需要调用该函数。这与带有建议的搜索框在Google中的工作方式类似。如果用户键入999,那么我需要调用该函数。如果他删除了9,那么它就是99,那么我需要调用该函数。
我确实有_lodash可用,因此使用它的解决方案可能最适合我的需求。
答案 0 :(得分:80)
您可以在Angular 1.3.0中使用ngModelOptions
HTML:
<div ng-controller="Ctrl">
<form name="userForm">
Name:
<input type="text" name="userName"
ng-model="user.name"
ng-model-options="{ debounce: 1000 }" />
<button ng-click="userForm.userName.$rollbackViewValue(); user.name=''">Clear</button><br />
</form>
<pre>user.name = <span ng-bind="user.name"></span></pre>
</div>
更多信息:https://docs.angularjs.org/api/ng/directive/ngModelOptions
答案 1 :(得分:66)
你在找什么?
$scope.$watch("id", _.debounce(function (id) {
// Code that does something based on $scope.id
// This code will be invoked after 1 second from the last time 'id' has changed.
}, 1000));
但是,请注意,如果要在该函数中更改$ scope,则应将其$scope.$apply(...)
包装起来,除非_.debounce
函数在内部使用$timeout
(据我所知)不这样做)Angular不会意识到您对$scope
所做的更改。
<强>更新强>
关于更新的问题 - 是的,你需要用
包装整个回调函数体 $scope.$apply()
:
$scope.$watch("id", _.debounce(function (id) {
// This code will be invoked after 1 second from the last time 'id' has changed.
$scope.$apply(function(){
// Code that does something based on $scope.id
})
}, 1000));
答案 2 :(得分:33)
我知道这个问题需要一个lodash解决方案。无论如何,这里只是一个有角度的解决方案:
app.factory('debounce', function($timeout) {
return function(callback, interval) {
var timeout = null;
return function() {
$timeout.cancel(timeout);
var args = arguments;
timeout = $timeout(function () {
callback.apply(this, args);
}, interval);
};
};
});
在控制器中:
app.controller('BlaCtrl', function(debounce) {
$scope.$watch("id", debounce(function (id) {
....
}, 1000));
});
答案 3 :(得分:6)
您可以将其封装在指令中。资料来源:https://gist.github.com/tommaitland/7579618
<input type="text" ng-model="id" ng-debounce="1000">
的Javascript
app.directive('ngDebounce', function ($timeout) {
return {
restrict: 'A',
require: 'ngModel',
priority: 99,
link: function (scope, elm, attr, ngModelCtrl) {
if (attr.type === 'radio' || attr.type === 'checkbox') {
return;
}
var delay = parseInt(attr.ngDebounce, 10);
if (isNaN(delay)) {
delay = 1000;
}
elm.unbind('input');
var debounce;
elm.bind('input', function () {
$timeout.cancel(debounce);
debounce = $timeout(function () {
scope.$apply(function () {
ngModelCtrl.$setViewValue(elm.val());
});
}, delay);
});
elm.bind('blur', function () {
scope.$apply(function () {
ngModelCtrl.$setViewValue(elm.val());
});
});
}
};
});