我正在构建一个使用长轮询技术的应用程序,并且在使用 IE8 时遇到了一些问题。
所以这是我使用的简化代码:
php:
$time = time();
while((time() - $time) < 10) {
$data = rand(0,10);
// if we have new data return it
if($data == 3 || $data == 6) {
echo json_encode($data);
break;
}
sleep(1);
}
js:
var lpOnComplete = function(response) {
alert(response);
// do more processing
lpStart();
};
var lpStart = function() {
$.post('http://example.com/test', {}, lpOnComplete, 'json');
};
$(document).ready(lpStart);
问题似乎是 IE8 没有等待服务器响应,而是在第一次正确响应后立即触发下一个请求或死亡。什么可能导致这种行为?