是的,你描述它的方式是長輪詢方法是如何工作的。 您的示例代碼有點模糊,所以我想補充一點,您應該在while
循環內執行sleep()
一小段時間,並且每次比較last_checked
時間(存儲在服務器端)和current
時間(這是從客戶端發送的內容)。
事情是這樣的:
$current = isset($_GET['timestamp']) ? $_GET['timestamp'] : 0;
$last_checked = getLastCheckedTime(); //returns the last time db accessed
while($last_checked <= $current) {
usleep(100000);
$last_checked = getLastCheckedTime();
}
$response = array();
$response['latestData'] = getLatestData() //fetches all the data you want based on time
$response['timestamp'] = $last_checked;
echo json_encode($response);
而在您的客戶端JS你有這樣的:
function longPolling(){
$.ajax({
type : 'Get',
url : 'data.php?timestamp=' + timestamp,
async : true,
cache : false,
success : function(data) {
var jsonData = eval('(' + data + ')');
//do something with the data, eg display them
timestamp = jsonData['timestamp'];
setTimeout('longPolling()', 1000);
},
error : function(XMLHttpRequest, textstatus, error) {
alert(error);
setTimeout('longPolling()', 15000);
}
});
}
這是一個很好的問題,我正要問同樣的問題。 – samayo