我正在尝试使用新的验证码,但正如标题所述,如果我两次提交表格,都会失败。
我读到我应该在提交尝试后重设令牌
grecaptcha.ready(function() {
// do request for recaptcha token
// response is promise with passed token
grecaptcha.execute('6LeH6Y4UAAAAABwpPXv0NjMAQp56WypP5hFz45ZM', {
action: 'contactus'
})
.then(function(token) {
// add token value to form
document.getElementById('g-recaptcha-response').value = token;
});
});
我在做什么错?