Google Invisible ReCaptcha并非隐身

Jon*_*nes 5 javascript jquery captcha invisible recaptcha

我只是在提交表单后尝试让Google Invisible ReCaptcha工作.我的问题是,ReCaptcha不是看不见的,看起来像是"旧的"重新出现了.我不明白为什么.我的网站密钥是无形的recaptcha.请帮我.

首先,我正在加载API:

<script src='https://www.google.com/recaptcha/api.js?render=explicit&onload=onScriptLoad' async defer></script>
Run Code Online (Sandbox Code Playgroud)

我的表单看起来像这样:

<form method="post" id="contact-form-face" class="clearfix" onsubmit="return false">
<input type="text" required name="name" value="name" onFocus="if (this.value == 'name') this.value = '';" onBlur="if (this.value == '') this.value = 'name';" />
<button type="submit" id="sendButton" data-size="invisible" class="g-recaptcha contact_btn" onclick="onSubmitBtnClick()" value="send" >send</button>
</form>
Run Code Online (Sandbox Code Playgroud)

JS:

window.onScriptLoad = function () {
// this callback will be called by recapcha/api.js once its loaded. If we used
// render=explicit as param in script src, then we can explicitly render reCaptcha at this point

// element to "render" invisible captcha in
var htmlEl = document.querySelector('.g-recaptcha');

// option to captcha
var captchaOptions = {
    sitekey: 'XXXXXXX',
    size: 'invisible',
    // tell reCaptcha which callback to notify when user is successfully verified.
    // if this value is string, then it must be name of function accessible via window['nameOfFunc'],
    // and passing string is equivalent to specifying data-callback='nameOfFunc', but it can be
    // reference to an actual function
    callback: window.onUserVerified
};

// Only for "invisible" type. if true, will read value from html-element's data-* attribute if its not passed via captchaOptions
var inheritFromDataAttr = true;

console.log("render now!");
// now render
recaptchaId = window.grecaptcha.render(htmlEl, captchaOptions, inheritFromDataAttr);
};

// this is assigned from "data-callback" or render()'s "options.callback"
window.onUserVerified = function (token) {
alert('User Is verified');
console.log('token=', token);

};

// click handler for form's submit button
function onSubmitBtnClick () {
var token = window.grecaptcha.getResponse(recaptchaId);

// if no token, mean user is not validated yet
if (!token) {
    // trigger validation
    window.grecaptcha.execute(recaptchaId);
    return;
}

var xhrData = {
    'g-recaptcha-response': token
    // more ajax body/data here
};

};
Run Code Online (Sandbox Code Playgroud)

为了使事情更清楚:这个reCaptcha工作正常,回调加载,验证工作也正常....唯一的问题是,这个rec​​aptcha必须是invisibile,而不是:/

Buc*_*i83 1

我认为你的问题是你显式调用 render() 方法

recaptchaId = window.grecaptcha.render(htmlEl, captchaOptions, inheritFromDataAttr);
Run Code Online (Sandbox Code Playgroud)

};

如果你想让它不可见,你必须包含这个自定义DIV

    <div class="g-recaptcha"
      data-sitekey="your_site_key"
      data-callback="onSubmit"
      data-size="invisible">
    </div>
Run Code Online (Sandbox Code Playgroud)

https://developers.google.com/recaptcha/docs/invisible

recaptcha 脚本将查找 div 类元素并将其绑定在那里,然后在调用 recaptcha 验证时执行回调。

要调用 recaptcha 验证,请使用 grecaptcha.execute();

按照 googledev 页面中的示例进行操作,非常简单。

我希望有帮助 =)