Ajax调用没有警报

时间:2015-09-22 07:14:27

标签: javascript php ajax

我正在尝试从Ajax调用中提醒一些数据。谁能发现我做错了什么?

PHP

while($row = $stmt->fetch()){
    echo json_encode($row);
}
echo "Done!";

来自Json_encode /网络预览的结果

{"flakId":"21098-10_flak-2"}{"flakId":"21098-10_flak-1"}Done!

JS

if(chosenObjNr){
    alert('I CAN see this alert')
    $.ajax({
        url:'php/update.php',
        type: 'POST',
        data: 'chosenObjNr=' + chosenObjNr,
        dataType: 'json',
        error: function (data){ alert("failed, i can see this!");},             
        success: function(data){  

            alert('I cannot see this alert!');
            alert(data);

            var data0;
            data0 = data[0];
            alert(data0);

            var falkId;
            flakId = data[0];
            alert(flakId);

            console.log(data);
        }

    });

};

RESULT

控制台中没有任何警报和任何内容。

1 个答案:

答案 0 :(得分:2)

问题是,ajax的success部分永远不会运行。您将dataType定义为json,因此它期望json。你的PHP是echos 2 json和一个不需要的字符串。

因此,要检查您的错误是什么,请在评论中添加fail函数作为新闻感谢:

if (chosenObjNr) {
alert('I CAN see this alert')
$.ajax({
    url: 'php/update.php',
    type: 'POST',
    data: 'chosenObjNr=' + chosenObjNr,
    dataType: 'json',
}).done(function (data) {
    alert('I cannot see this alert!');
    //Do what you want to do here
}).fail(function (msg) {
    alert('An error occured: ' + msg.statusText);
});

}

并且,如果你想修复你的.php删除echo 'Done';部分,并将你的记录添加到一个数组,当它完成后,将其编码为json:

$return = array();
while ($row = $stmt->fetch()) {
    $return[] = $row;
}
echo json_encode($return);