0

我正在尝试使用 jquery Real Person ( http://keith-wood.name/realPerson.html )。按照说明,这是我的 javascript 代码。$("#sb1") 是提交按钮。

我遇到了时间问题,因为涉及到一个 ajax 调用,其中显示了注释“//bValid 此时未定义”,bValid 未定义。有什么想法可以延迟“bValid = bValid && checkCaptcha();” 代码以便 ajax 调用到那时已经完成?

谢谢,火箭

function checkCaptcha() {

  // Call php file to check this

  $.post("ajax/check_captcha.php", { realPerson : $("#defaultReal").val(), realPersonHash: $(".realperson-hash").val()} ,
        function(data) {
        // If data = Error reload page
          if ($.trim(data) == "Error")  {
            updateTips("Captcha does not match");
           return false;
          } else {
            return true;
          }
      });
}

...

$("#sb1").click(function() {
      var bValid = true;
      bValid = bValid && checkLength($("#title"), "name", 3, 100 );
      bValid = bValid && checkCaptcha(); //bValid is UNDEFINED at this point
      alert("bValid is "+bValid);

      if ( bValid ) {
        setTimeout("$('#submitCampForm').submit();",500);
      }
});

PHP 代码未更改 (check_captcha.php)。

function rpHash($value) {
    $hash = 5381;
    $value = strtoupper($value);
    for($i = 0; $i < strlen($value); $i++) {
        $hash = (leftShift32($hash, 5) + $hash) + ord(substr($value, $i));
    }
    return $hash;
}

// Perform a 32bit left shift
function leftShift32($number, $steps) {
    // convert to binary (string)
    $binary = decbin($number);
    // left-pad with 0's if necessary
    $binary = str_pad($binary, 32, "0", STR_PAD_LEFT);
    // left shift manually
    $binary = $binary.str_repeat("0", $steps);
    // get the last 32 bits
    $binary = substr($binary, strlen($binary) - 32);
    // if it's a positive number return it
    // otherwise return the 2's complement
    return ($binary{0} == "0" ? bindec($binary) :
        -(pow(2, 31) - bindec(substr($binary, 1))));
}

if (rpHash($_POST['realPerson']) == $_POST['realPersonHash']) {
} else {
  print "Error";
}
4

2 回答 2

0

因为您在回调内部返回 ajax 函数,所以它将其值返回给回调函数,而不是外部函数 checkCaptcha()。没有办法让你的 bValid 变量等到 checkCaptcha() 完成,所以取而代之的是,把你想要对你的 bValid 变量做的任何事情放在 ajax 函数回调中,可能像这样:

$.post("ajax/check_captcha.php", { whatever: whatever} ,function(data) {
    // If data = Error reload page
    if ($.trim(data) == "Error")  {
        updateTips("Captcha does not match");
    } else {
        setTimeout("$('#submitCampForm').submit();",500); //line added
    }
});
于 2013-05-28T01:15:07.613 回答
0

我永远不会使用超时来信任服务器调用的成功返回,使用回调参数来确保准确的流程。

function checkCaptcha(CB){
  $.post(
    "file",
    options,
    function(data) {
      if($.trim(data) == "Error")  {
        updateTips("Captcha does not match");
        CB && CB(false);
      }else{
        CB && CB(true);
      }
    }
  );
}

$('#sb1').click(function(){
  checkCaptcha(function(status){
    if(status){
      // captcha true
    }else{
      // captcha false
    }
  });
});

显然,我遗漏了您的代码的某些部分,这些部分对查看此页面的其他人是不敬的,因此您必须将它们放回原处,但是“ jist”就在那里...

另外,只是一个旁注,但我个人更喜欢实际的Captcha API。它不仅更安全,而且还是一个非常了不起的实用程序,可以同时帮助数字化旧文本。没有什么反对你使用的,但它似乎很容易破解。

于 2013-05-28T01:21:16.557 回答