我的頁面上有很長的輪詢請求。服務器端的腳本在20秒後設置爲超時。多個AJAX請求相互延遲
所以,當長輪詢是「閒置」,並且用戶按下另一個按鈕時,發送該新請求將被延遲,直到前一個腳本超時爲止。
我看不出jQuery端的代碼有什麼問題。爲什麼onclick事件延遲?
function poll()
{
$.ajax({
url: "/xhr/poll/1",
data: {
user_id: app.user.id
},
type: "POST",
dataType: "JSON",
success: pollComplete,
error: function(response) {
console.log(response);
}
});
}
function pollComplete()
{
poll();
}
function joinRoom(user_id)
{
$.ajax({
url: "/xhr/room/join",
dataType: "JSON",
type: "POST",
data: {
user_id: app.user.id,
room_id: room.id
}
});
}
<button id="join" onclick="javascript:joinRoom(2);">Join</button>
############ PHP Controller on /xhr/poll
$time = time();
while ((time() - $time) < 20)
{
$updates = $db->getNewStuff();
foreach ($updates->getResult() as $update)
$response[] = $update->getResponse();
if (!empty($response))
return $response;
else
usleep(1 * 1000000);
return 'no-updates';
}
「睡眠」是否會成爲問題?
問題是否在localhost中? –
用於AJAX調用的PHP代碼是否使用會話? –