隐形reCAPTCHA以多种形式发送空的g-recaptcha-response

时间:2017-04-04 14:13:47

标签: javascript jquery forms recaptcha invisible-recaptcha

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

Google 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 (基于this answer]

$(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参数将被发送为空,如下所示。

enter image description here

有人可以帮我把它投入使用吗?

2 个答案:

答案 0 :(得分:2)

如果要在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"));
    });
});

答案 1 :(得分:0)

根据文档和您的代码,我猜您正在尝试使用Google reCaptcha中的Programmatically invoke the challenge.。 所以在你的JS代码中你错过了一个陈述:

grecaptcha.execute();

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

  

render explicit onload可选。是否渲染小部件   明确。默认为onload,这将在窗口中呈现窗口小部件   它找到的第一个g-recaptcha标签。

据我所知,它刚刚找到第一个标记标签并导致您出现问题?