Determine if $.ajax error is a timeout(确定 $.ajax 错误是否超时)
问题描述
我正在利用 jQuery.ajax( settings )
的魔力.
I'm utilizing the magic of jQuery.ajax( settings )
.
但是,我想知道是否有人经常使用超时设置?
However, I'm wondering if anyone has played with the timeout setting much?
我知道它基本上是用于指示请求的本地时间,但是如果达到超时,它会触发任何事情吗?或者它只是停止监听响应?
I know it's basically for dictating the local time for a request, but can it trigger anything if the timeout is reached? Or does it simply stop listening for a response?
阅读 jQuery 站点,我可以看到没有传递任何参数,所以这似乎是一个具有一种功能的简单设置.这很好.
Reading the jQuery site, I can see there are no arguments passed, so it seems like a simple setting with one capability. Which is fine.
但是,如果达到超时,我想触发警报或某些功能.在这种情况下,我可以看到错误设置没有被触发.
But, I'd like to trigger an alert or some function if the timeout is reached. I can see that the error setting doesn't get triggered, in this case.
这是我的片段:
$("form#testform").submit(function(){
var allFormValues = $("form#testform").serialize();
$.ajax({
cache:false,
timeout:8000, // I chose 8 secs for kicks
type:"POST",
url:"someurl.php",
data:allFormValues,
error:function(){ alert("some error occurred") },
success:function(response){ alert(response); }
});
});
有谁知道如何使用超时进行更多工作?
Does anyone know how to work more with timeout?
推荐答案
如果您的错误事件处理程序在发生超时时采用三个参数(xmlhttprequest、textstatus 和 message),则状态参数将为超时".
If your error event handler takes the three arguments (xmlhttprequest, textstatus, and message) when a timeout happens, the status arg will be 'timeout'.
根据 jQuery 文档:
第二个可能的值参数(除了 null)是超时",错误"、未修改"和解析器错误".
Possible values for the second argument (besides null) are "timeout", "error", "notmodified" and "parsererror".
您可以相应地处理您的错误.
You can handle your error accordingly then.
我创建了这个 fiddle 来演示这一点.
I created this fiddle that demonstrates this.
$.ajax({
url: "/ajax_json_echo/",
type: "GET",
dataType: "json",
timeout: 1000,
success: function(response) { alert(response); },
error: function(xmlhttprequest, textstatus, message) {
if(textstatus==="timeout") {
alert("got timeout");
} else {
alert(textstatus);
}
}
});
使用 jsFiddle,您可以测试 ajax 调用——它会在响应前等待 2 秒.我将超时设置为 1 秒,因此它应该会出错并将超时"的文本状态返回给错误处理程序.
With jsFiddle, you can test ajax calls -- it will wait 2 seconds before responding. I put the timeout setting at 1 second, so it should error out and pass back a textstatus of 'timeout' to the error handler.
希望这会有所帮助!
这篇关于确定 $.ajax 错误是否超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:确定 $.ajax 错误是否超时
基础教程推荐
- 在for循环中使用setTimeout 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 动态更新多个选择框 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01