与角度分量的隐形reCAPTCHA集成
我想要在角度2分量中集成隐形的recaptcha。与角度分量的隐形reCAPTCHA集成
这是我在login.component.html
<button type="submit" class="g-recaptcha" data-sitekey="<Site-Key>" data-callback='onsubmit'> Log On </button>
代码和login.component.ts具有的onsubmit如下方法:
onsubmit() { console.log("In onsubmit method");
}
我收到以下错误,当我打电话onsubmit方法从我的login.component.ts
ReCAPTCHA couldn't find user-provided function:onsubmit
以及如何获得'g-recaptcha-response'在我的login.component.ts。
回答:
没有与角如角的reCAPTCHA
我们都用它来验证表单,可以帮助你整合谷歌验证码(更多详情这里https://github.com/VividCortex/angular-recaptcha)插件和它工作正常。
以上是 与角度分量的隐形reCAPTCHA集成 的全部内容, 来源链接: utcz.com/qa/261385.html