AngularJS 成功提交表单后 reCaptcha 未重置
AngularJS reCaptcha not resetting after successful form submission
我正在使用 AngularJS reCaptcha 来防止垃圾邮件。在成功解析验证码后,我得到了 reCaptcha 响应,但问题是当我提交表单时,复选框没有重置,我得到了以前的验证码响应。我不明白我哪里出错了。
我遵循了这个 link 中的教程
VividCortex/angular-recaptcha
提前致谢。
尝试在 $http 回调中自行重置
this.response = null;
vcRecaptchaService.reload(this.widgetId);
我正在使用 AngularJS reCaptcha 来防止垃圾邮件。在成功解析验证码后,我得到了 reCaptcha 响应,但问题是当我提交表单时,复选框没有重置,我得到了以前的验证码响应。我不明白我哪里出错了。
我遵循了这个 link 中的教程 VividCortex/angular-recaptcha
提前致谢。
尝试在 $http 回调中自行重置
this.response = null;
vcRecaptchaService.reload(this.widgetId);