4

我正在尝试使用Google Invisible reCAPTCHA,但是g-recaptcha-response当我在同一页面中有多个表单时,它会发送空的 POST 参数。这是我的代码:

谷歌JS

<script src="//google.com/recaptcha/api.js?hl=pt-BR&onload=captchaCallback&render=explicit" async defer></script>

表格 1

<form action="/site/Contact/send" id="form1">
    <input type="text" name="nome" required>

    <div class="g-recaptcha"
        data-sitekey="xxxxxxxxxxxxxxxxxxxxxxxx"
        data-callback="form1Callback"
        data-size="invisible">
    </div>

    <button type="submit">Send</button>

</form>

表格 2

<form action="/site/Contact/send" id="form2">
    <input type="text" name="nome" required>

    <div class="g-recaptcha"
        data-sitekey="xxxxxxxxxxxxxxxxxxxxxxxx"
        data-callback="form2Callback"
        data-size="invisible">
    </div>

    <button type="submit">Send</button>
</form>

我的 JS(基于这个答案]

$(document).ready(function() {

    window.captchaCallback = function(){
        $('.g-recaptcha').each(function(index, el) {
            var attributes = {
                'sitekey'  : $(el).data('sitekey'),
                'size'     : $(el).data('size'),
                'callback' : $(el).data('callback')
            };

            grecaptcha.render(el, attributes);
        });
    };

    window.form1Callback = function(){
         $('#form1').submit();
    };

    window.form2Callback = function(){
         $('#form2').submit();
    };
});

当我提交其中一种表单时,g-recaptcha-response参数被发送为空,如下所示。

在此处输入图像描述

有人可以帮我把它付诸实践吗?

4

2 回答 2

6

如果您在 div 元素中呈现不可见的 recaptcha,则需要手动调用 grecaptcha.execute() 来运行 recaptcha。此外,如果有多个带有 recaptcha 的表单,则需要调用 grecaptcha.execute() 方法,并在调用 grecaptcha.render() 方法时为每个 recaptcha 生成一个小部件 ID。

$(document).ready(function() {
    window.captchaCallback = function(){
        $('.g-recaptcha').each(function(index, el) {
            var attributes = {
                'sitekey'  : $(el).data('sitekey'),
                'size'     : $(el).data('size'),
                'callback' : $(el).data('callback')
            };

            $(el).data('recaptcha-widget-id', grecaptcha.render(el, attributes));
        });
    };

    window.form1Callback = function(){
        $('#form1').data("recaptcha-verified", true).submit();
    };

    window.form2Callback = function(){
        $('#form2').data("recaptcha-verified", true).submit();
    };

    $('#form1,#form2').on("submit", function(e){
        var $form = $(this);
        if ($form.data("recaptcha-verified")) return;

        e.preventDefault();
        grecaptcha.execute($form.find(".g-recaptcha").data("recaptcha-widget-id"));
    });
});
于 2017-04-27T07:24:34.410 回答
1

根据文档和您的代码,我猜您正在尝试使用Programmatically invoke the challenge.Google reCaptcha。因此,在您的 JS 代码中,您错过了一个语句:

grecaptcha.execute();

更新 也许我误解了你的问题,所以检查一下:

渲染显式 onload 可选。是否显式渲染小部件。默认为 onload,它将在它找到的第一个 g-recaptcha 标记中呈现小部件。

据我了解,它刚刚找到第一个标记的标签,这会导致您出现问题吗?

于 2017-04-04T15:24:46.187 回答