admin管理员组文章数量:1341748
I have this code to time out ajax call after 40 secs:
if (xmlhttp) {
xmlhttp.open("GET", MY_SERVLET, true); xmlhttp.onreadystatechange = showResults;
xmlhttp.send(null);
var httpTimeOut=setTimeout("ajaxTimeout();",40000);
}
function ajaxTimeout() {
xmlhttp.abort();
document.getElementById('errorShow').innerHTML = "Request Timed out";
}
However I am unable to test this due to environment constraints at my place. Can anyone please tell if this is correct or any modifications are required??
I have this code to time out ajax call after 40 secs:
if (xmlhttp) {
xmlhttp.open("GET", MY_SERVLET, true); xmlhttp.onreadystatechange = showResults;
xmlhttp.send(null);
var httpTimeOut=setTimeout("ajaxTimeout();",40000);
}
function ajaxTimeout() {
xmlhttp.abort();
document.getElementById('errorShow').innerHTML = "Request Timed out";
}
However I am unable to test this due to environment constraints at my place. Can anyone please tell if this is correct or any modifications are required??
Share Improve this question edited Sep 2, 2011 at 12:47 BalusC 1.1m376 gold badges3.7k silver badges3.6k bronze badges asked Sep 2, 2011 at 6:51 buzz3110buzz3110 411 gold badge1 silver badge3 bronze badges1 Answer
Reset to default 11Should fix that:
if (xmlhttp) {
xmlhttp.open("GET", MY_SERVLET, true);
xmlhttp.onreadystatechange = showResults;
xmlhttp.send(null);
setTimeout(function() { xmlhttp.abort() },40000);
since ajaxTimeout
function can't "see" xmlhttp
variable, but we can use anonymous function to have access to local variables.
Yet another approach is to use jQuery.ajax
so the library would take care of it.
Your code would look like so:
$.ajax({
url: MY_SERVLET,
async: true,
timeout: 40000,
success: function(args) {
// on success code
}
})
本文标签: javascriptHow to set up ajax time outStack Overflow
版权声明:本文标题:javascript - How to set up ajax time out? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743634814a2513719.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论