我正在尝试实施重新计算。 我正在使用jquery(ajax)调用验证脚本(http://www.google.com/recaptcha/api/verify)。 这会将数据类型限制为JSONP,Google会拒绝所有其他数据类型。
问题是google验证返回字符串是这样的: 真正 成功
或 假 '错误消息'
这会导致jquery端的解析错误... 有没有人知道我怎么能解决这个或最糟糕的情况检索响应文本,即使有一个解析错误?
以下是我的ajax请求。我添加了完整的和错误的函数进行测试。
$("#verifyCaptcha").click(function(){
var chal = Recaptcha.get_challenge();
var resp = Recaptcha.get_response();
$.ajax({
url: "http://www.google.com/recaptcha/api/verify",
type: "GET",
data: {
privatekey: "MyKey",
remoteip: "172.29.129.133",
challenge: chal,
response: resp
},
//dataType: 'jsonp',
success: function(output){
output = output.split('/n');
console.log(output[0] + '**' + output[1]);
if(output[0].toLowerCase() == 'true')
$("#recaptcha_result").html('Succes: form will be sent.');
else
$("#recaptcha_result").html('Failed: form will NOT be sent.');
},
complete:function (xhr, status) {
if (status === 'error' || !xhr.responseText)
console.log('an error occured');
else
var data = xhr.responseText;
},
error: function(request, status, error)
{
if(request.responseText == 'success')
$("#recaptcha_result").html('Succes: form will be sent.');
else
$("#recaptcha_result").html('Failed: form will NOT be sent.');
console.log(request.responseText + '**'+status + "**"+error);
}
});
});