PHP AJAX请求在localhost上突然停止工作

时间:2017-11-19 08:18:55

标签: php ajax localhost

这是我的ajax脚本

$('#login-form').submit(function(event) {
/* Act on the event */
event.preventDefault();
var form_data = $(this).serialize();
var url = $(this).attr('action');
$.post(url, form_data, function(message){
    if(message == 1){
        window.location.href    =   'home.php';
    }else{
        $('#login-form span.error').html(message).show(100);
        $('#login-form')[0].reset();
    }

    }); //end of post function

});// end of submit function

这是我的php脚本(脚本的一部分)来处理上面粘贴的ajax请求

if(isset($_POST['email']) && isset($_POST['password'])){
$login_result   =   runQuery($login_query);
$row_count = mysqli_num_rows($login_result);
if($row_count>0){
    echo $row_count;
}else{
    echo "Email/Password is incorrect";
}

直到昨天工作正常,但今天我只是“1”(如果电子邮件和密码是正确的)或“电子邮件/密码不正确”,否则。

enter image description here

我无法弄明白。

0 个答案:

没有答案