gpt4 book ai didi

angularjs - 在 angularjs 中使用 debounce 延迟代码

转载 作者:行者123 更新时间:2023-12-04 01:30:13 24 4
gpt4 key购买 nike

我必须在 angularjs 中编写电子邮件验证功能。当用户使用电子邮件 ID 完成编辑后,我想在 2 秒后发出帖子请求。 angularjs 中有没有为此预先定义的方法。 fiddle

var app = angular.module('form-example', []);
app.controller('formctrl',function($scope){
var ctrl= this;
ctrl.verifyEmail= function(){
console.log('hiiii')
}

})

最佳答案

去抖动是 Angular 1.3+ 内置的。正如您所期望的那样,它是作为指令实现的。你可以这样做:

<input ng-model='address' ng-model-options="{ debounce: 500 }" />

$scope.address 属性直到最后一次击键后 500 毫秒才会更新。

如果您需要更多控制

如果你想要更多的粒度,你可以为不同的事件设置不同的反弹时间:
<input ng-model='person.address' ng-model-options="{ updateOn: 'default blur', debounce: {'default': 500, 'blur': 0} }" />

例如,这里我们有一个 500 毫秒的击键反弹,而模糊则没有反弹。

文档

在此处阅读文档: https://docs.angularjs.org/api/ng/directive/ngModelOptions

关于angularjs - 在 angularjs 中使用 debounce 延迟代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32589154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com