admin管理员组文章数量:1350338
In web programming (JavaScript, Dart, etc), how can I tell if my XMLHttpRequest (aka AJAX) request failed because of a network error?
I define network error as anything like DNS, TCP, connection issues, etc.
Thanks!
In web programming (JavaScript, Dart, etc), how can I tell if my XMLHttpRequest (aka AJAX) request failed because of a network error?
I define network error as anything like DNS, TCP, connection issues, etc.
Thanks!
Share Improve this question asked Jan 20, 2014 at 18:33 Seth LaddSeth Ladd 121k68 gold badges205 silver badges287 bronze badges 2- Have a Look - stackoverflow./questions/1730692/… – Ankit Commented Jan 20, 2014 at 18:45
- The timeout doesn't always work. I tested locally with my server turned off, and the XHR request failed instantly. In some cases, timeout probably works as one indicator. – Seth Ladd Commented Jan 20, 2014 at 19:03
3 Answers
Reset to default 9In Dartium, and in Chrome JS at least, you can detect the failure by seeing that you hit readyState == 4 ("done") with a status of zero. Zero is not a valid server response, all HTTP server responses are above 100, so it means that it didn't actually reach the server (or at least the server didn't speak proper HTTP).
The onError stream will also get a progress event at this point.
In synchronous mode, the error will be thrown instead.
Usually the answer of the AJAX calls e with a status code, and a responseText properties, if you have access to the data that es from the call, try to read data.status and data.responseText and see if you get them correctly (200 is for success, 500 is for internal server error, etc).
u need to check, what response code is returned from in response, if that code is returning 500, means there is a server issue.
本文标签: javascriptHow do I tell if an XMLHttpRequest failed due to a network issueStack Overflow
版权声明:本文标题:javascript - How do I tell if an XMLHttpRequest failed due to a network issue? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743876819a2554478.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论