最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do I tell if an XMLHttpRequest failed due to a network issue? - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

3 Answers 3

Reset to default 9

In 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.

发布评论

评论列表(0)

  1. 暂无评论