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

javascript - jQuery.ajax() error with textStatus=error - Stack Overflow

programmeradmin2浏览0评论

The jQuery.ajax() function I use works correctly most of the time. However sometimes it is not returning any data. Instead the error() function is called.

$.ajax({

  [...]

  , error: function(jqXHR, textStatus, errorThrown) {
    console.log(jqXHR);
    console.log(textStatus);
    console.log(errorThrown);
  }
});

I can see in there that in those cases textStatus is 'error' and errorThrown is '' (empty).

The jQuery documentation just lists the possible values of textStatus ("timeout", "error", "abort", and "parsererror"). However it does not describe, what 'error' means.

jqXHR returns an object but it does not seam to reveal any additional insights.

How can I investigate what the source to this issue is?

The jQuery.ajax() function I use works correctly most of the time. However sometimes it is not returning any data. Instead the error() function is called.

$.ajax({

  [...]

  , error: function(jqXHR, textStatus, errorThrown) {
    console.log(jqXHR);
    console.log(textStatus);
    console.log(errorThrown);
  }
});

I can see in there that in those cases textStatus is 'error' and errorThrown is '' (empty).

The jQuery documentation just lists the possible values of textStatus ("timeout", "error", "abort", and "parsererror"). However it does not describe, what 'error' means.

jqXHR returns an object but it does not seam to reveal any additional insights.

How can I investigate what the source to this issue is?

Share Improve this question edited Apr 16, 2017 at 20:50 Alexis Wilke 20.9k11 gold badges106 silver badges178 bronze badges asked Apr 29, 2015 at 13:03 JochenJungJochenJung 7,21312 gold badges66 silver badges114 bronze badges 2
  • 1 What do you get if you do console.log(jqXHR.status) ? – kidA Commented Apr 29, 2015 at 13:12
  • This is empty as well. – JochenJung Commented Apr 29, 2015 at 14:10
Add a ment  | 

3 Answers 3

Reset to default 4

Found out it happens, whenever Reload is pressed in the browser, while the ajax request was still running.

This post helped me implement a solution.

I would suggest you to use fiddler to monitor the request and analyze what you are getting in response.

Another thing to try is to pose your ajax request in fiddler poser. This way you can figure out whether your are passing all required headers or not.

You will find more details in fiddler.

As KidA said in the ment try this:

console.log(jqXHR.status);

Also, just make sure you are pulling from the right destination (url, listname, etc.) along with the proper data type pull (POST, GET, UPDATE, DELETE, etc.)

发布评论

评论列表(0)

  1. 暂无评论