douxiuyu2028 2011-03-04 18:12
浏览 51
已采纳

Ajax jQuery在10秒后成功返回,但不应该

I've got a jQuery ajax call which goes of to the server backend.php script and told to sleep for 13 seconds (or more) before responding with a simple test message. What I'm seeing is the ajax success function triggering (with a 200 response observed in firebug) after 10 seconds with no actual response from the server. If I set the response delay to less than 10 seconds I get the response message perfectly.

Is this something you've seen before? Is there some default php timeout thing going on?

    ajaxcall = $.ajax({
    type: "GET",
    url: "backend.php",
    async: true,
    cache: false,
    dataType: 'json',
    timeout: 30000,
    /* Timeout in ms. Default to 30000 (30 seconds) */
    data: "TimeStamp=" + TimeStamp,
    success: function(data) {

        if (data !== null) {
            $('#TextHistory').append(data.message);

            if (data.timestamp != 0)
            {
              TimeStamp = data.timestamp;
            }
        }
        setTimeout(
        waitForMsg, /* Request next message */
        5000 /* ..after 5 seconds, default to 5000*/ );
    },
    error: function(XMLHttpRequest, textStatus, errorThrown) {

        $('#TextHistory').append('<p>Error:' + errorThrown + '</p>');

        setTimeout('waitForMsg()',"15000"); /* milliseconds (15seconds) default to 15000 */
    }
});

}

..and on the server side i'm simply doing this:

<?php

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

sleep(13);   // Changing this to test it. Will only work if less than 10

   $When = date("H:i:s",strtotime("now"));

   $response["message"] = "<p>Small Test $When</p>";

    $response["timestamp"] = 123456789;

   echo json_encode($response);

?>
  • 写回答

1条回答 默认 最新

  • duanheyi7147 2011-03-04 18:16
    关注

    Definitely its timing out after 10 seconds

    Place a call to phpinfo() on a blank page and see what the timouts are set to

    Look at max_execution_time for one

    It'll just need to be overriden in a php.ini file or in the PHP directly

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀