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 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化