douyeyan0650 2016-07-27 12:30
浏览 38
已采纳

jQuery AJAX没有得到PHP的响应

I used to be able to make jQuery AJAX requests perfectly well in NodeJS, but when I try to do the same in PHP, I have several issues. Nothing I could find in SO could help, so I'd like to ask, what's the problem with my simple example?

index.php - really isn't much, only loading 2 JS, 1 PHP and defining a button and a paragraph.

<html>
    <head>
        <script src='jquery-3.0.0.js'></script>
        <script src='main_js.js'></script>      
    </head>
    <body>
        <button id="action" onClick="Send()">Send data</button>
        <p id="result">Lorem ipsum</p>

        <?php require('main_php.php'); ?>                   
    </body>
</html>

main_js.js - it contains the function associated to the 'onClick' event.

function Send(){
    var data_JSON = {
        input: "test",
        message: "Sending..."
    };          
    $.ajax({
        url: 'main_php.php',
        type: 'POST',
        data: data_JSON,
        contentType: 'application/json',
        success: function(data){                
            alert(data);                
            document.getElementById("result").innerHTML = "DONE!";          
        }       
    }); 

} 

main_php.php - it listens to POST requests, theoretically, and sends back a JSON with echo. Again, theoretically...

<?php
if ($_POST){        
    // Make a array with the values
    $vals = array(
        'input'     => $input,
        'message'   => $message
    );      
    echo json_encode($vals, JSON_PRETTY_PRINT);     // Now we want to JSON encode these values to send them to $.ajax success.
    exit;                                           // to make sure you aren't getting nothing else
}
?>

jQuery AJAX's success function runs, as the text "DONE!" appears in the paragraph, but the alert message is entirely empty. alert(data.input) (and same for message) shows undefined.

It is clear that no data is sent back to the AJAX request. How can I fix it?

Note: it is the entirety of the code, there's nothing else shown, and I also shortened and simplified as much as possible.

  • 写回答

2条回答 默认 最新

  • dongmaonao0505 2016-07-27 12:37
    关注

    That's because you're not sending response from PHP as JSON.

    Add following line above echo json_encode();

    header('Content-Type: application/json');
    

    So your PHP code will look something like this,

    <?php
    if ($_POST){        
        // Make a array with the values
        $vals = array(
            'input'     => $input,
            'message'   => $message
        );
        header('Content-Type: application/json');      
        echo json_encode($vals, JSON_PRETTY_PRINT);     // Now we want to JSON encode these values to send them to $.ajax success.
        exit;                                           // to make sure you aren't getting nothing else
    }
    ?>
    

    Also as @Ismail mentioned dataType : 'json' add this in .AJAX call to accept JSON response from API.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵