I have an $.ajax() request with the dataType set to "json." The server is returning JSON with the correct mime type of "application/json." And yet the responseText in my jqXHR object is always a string. What am I doing wrong? Is this how it's supposed to work?

Here's how I'm making the call:

var options = { 
    dataType:'json',
    type: 'GET',
    url: "http://example.com/api/"
};

var key = "PassToCallback";

var jqXHRObject =  $.ajax(options).then(
    function(data, textStatus, jqXHR, key) {
        this.success(data, textStatus, jqXHR, key);
    },
    function(jqXHR, textStatus, errorThrown) { 
        this.error(jqXHR, textStatus, errorThrown);
    }
);

console.log(jqXHRObject.getResponseHeader("content-type")); // application/json
console.log(typeof jqXHRObject.responseText); // string

So I have have to do a $.parseJSON(jqXHRObject.responseText) to get an actual object. This seems unnecessary as $.ajax() should be automatically converting responseText according to the docs. Thanks!

link|improve this question

43% accept rate
feedback

3 Answers

You are using $.ajax in a way the docs don't describe. Using json as the dataType just means that the data passed to the success callback will be parsed. Use it like this:

$.ajax({
  dataType:'json',
  type: 'GET',
  url: "http://example.com/api/"
  success: function(data, textStatus, jqXHR) {
    // `data` contains parsed JSON
  },
  error: function(jqXHR, textStatus, errorThrown) {
     // Handle any errors
  }
});
link|improve this answer
1  
That's actually what I am doing... I'm just using jQuery's Deferred Objects, documented here which states that $.ajax() will return a deferred object. The .then() calls the success and error callbacks. I'm doing this to take full advantage of jqXHR deferred objects. – dbme Apr 28 '11 at 23:39
Ah, I see! I'm not sure about using those in this case then, sorry. – kcbanner Apr 29 '11 at 13:55
1  
According to the docs for error, "Note: This handler is not called for cross-domain script and JSONP requests." – jeffamaphone Oct 4 '11 at 18:01
Correct, but this is a JSON response, not JSONP – kcbanner Oct 4 '11 at 19:17
feedback

I don't see anything in the documentation that suggests responseText would be anything other than exactly what the name implies: text.

Why not just use .getJSON? That would get rid of half of the code you wrote, and it'll convert the response to JSON. Win/win.

link|improve this answer
$ajax() documentation under dataTypeString: "'json': Evaluates the response as JSON and returns a JavaScript object." I am not using .getJSON because I use the same method to get multiple types of data (json and html). – dbme Apr 28 '11 at 23:14
*meant under dataType, accidentally copied the String from the next line. Just to clarify. – dbme Apr 28 '11 at 23:35
feedback

I've come to understand the ajax error callback as an Internal Server Error callback.

I usually have my server return 200 OK for all JSON requests that are received and processed with no server (500) errors. Then in my JSON response, I include a {success:true} or {success:false} boolean indicating whether the server was able to complete the requested action. When I get the JSON back in the success handler, I can check any status strings or booleans that I've set and handle the result accordingly. Then the Deferred.error doesn't need to manually process the jqXHR.responseText, because it's usually some kind of server-side pukey mess anyway. You can just assume some catastrophic failure occurred and convey that to the user however you choose.

This is just one way to look at it. Either way you have to handle both types of errors (internal and external), but this way sometimes you end up sending a 200 response when you really should be using a 4XX response. That might be wrong for your use case, especially if you are writing a public API or have no control over the server you're talking to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.