0
我是角4新。我試圖在我的頁面添加recaptcha而不使用其他node_modules。角4 recaptcha不工作
HTML
<div class="g-recaptcha" data-callback="onCaptchaComplete" data-sitekey="xxxxxxxxxxxx"></div>
TS
private onCaptchaComplete(response: any) {
console.log('reCAPTCHA response recieved:');
console.log(response.success);
console.log(response.token);
}
但我正在逐漸ReCAPTCHA couldn't find user-provided function: onCaptchaComplete
請幫我在哪裏是我的錯誤。
謝謝。
這與recaptcha本身無關,它只是找不到你的onCaptchaComplete函數。這可能有很多原因,最終只是因爲你把它設置爲私人的,而不在範圍之內。在github頁面https://github.com/VividCortex/angular-recaptcha/issues/175上也有一個官方的開放bug。 – Doomenik