我只想问一些帮助,是什么原因导致jquery.ajax响应时间过长需要17秒或更长时间,有时我的响应时间为40秒。
这是代码
$(function(){
getUpdates();
});
function getUpdates(){
type: "GET",
dataType:'json',
url: "updates.php",
error: function () {
setTimeout(getUpdates, 5000);
},
success: function(data){
//do something with the data
...
...
...
setTimeout(getUpdates, 5000); //call again the function
}
});
}