1

$.post()第一次运行女巫返回正确的数据 json 数据以运行 if 语句,但下一次$.post()使用它返回错误,导致 if 语句无法按预期工作。

我当前的 Jquery 代码:

$.post('functions/write_settings.php', { dbname: $('#dbname').val(), dbhost: $('#dbhost').val(), dbpassword: $('#dbpassword').val(), dbusername: $('#dbusername').val(), dbprefix: $('#dbprefix').val() }, function(data){
    alert("here");
    try{var returndata = $.parseJSON(data);}catch(e){/*cont*/}
    alert("here1");
      if($(returndata).size() >= 1){
          for(var i = 0; i < $(returndata).size(); i++){
              $("#" + returndata[i]).css('background', 'url(style/install/database/imgs/textbox_error.png)');
          }
          ResetButton();
          alert("here2");
    }else{
        $.post('functions/check_settings.php', function(data){
            alert(data);
            var postdata = data;
            $.trim(postdata);
            if(postdata == 'error'){
                alert("test2");
                $('#pdbe').show();
                $('#pdbe').effect("pulsate", { times:10 }, 10000);
                ResetButton();
            }else if(data == '0'){
                alert('connected!');
            }
        });
    }
});

这是 check_settings.php

$cwd = getcwd();
$file = $cwd.'/dbconfig.php';
//check dbconfig created
if(file_exists($file)){
    include('./dbconfig.php');
}else{
    echo("error2");
    die();
}

//grab required vars
$host = $config['db']['host'];
$dbname = $config['db']['dbname'];

//test basic connection
try{
   $dbh = new PDO("mysql:host=$host;dbname=$dbname", $config['db']['username'], $config['db']['password']);
   $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}catch(PDOException $e){
   echo("error");
   die();
}
echo("0");

就像我说的第一次$.post()返回正确的数据,而第二次使用它时它会错误地返回并导致 if 语句无法正常工作。

任何解决此问题的建议将不胜感激!

4

1 回答 1

1

你的问题是多余的空间吗?如果是这样,您可能会在 check_settings.php 中不知不觉地打印空格或换行符。例如,您可能在第一行之前有空格或换行

于 2012-12-07T21:29:04.473 回答