私はアンギュラ4の新機能です。他のnode_modulesを使わずに私のページにrecaptchaを追加しようとしています。ang 4 recaptcha not working
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)。 – Doomenik