Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  4] [ 4]  / answers: 1 / hits: 58806  / 13 Years ago, tue, june 7, 2011, 12:00:00

By using jquery ajax function, I can do something like:



$.ajax({

url: url,
type: 'GET',
async: true,
dataType: 'json',
data: data,

success: function(data) {

//Handle server response here

},

error: function(xhr, status, error){

//Handle failure here

}

});


I got two questions to ask based on above code:




  1. When will the jquery.ajax() error callback be called??


  2. What if server response to me a json object with string message There is an error. Which means the request is still send successfully, but I got server response {message: There is an error}.




I think no matter what string value server is responsed, if client got server's response, the jquery.ajax() success callback will be triggered anyway.



I'd like to ask if server specifically returns to me a JSON object with string value like {message: 'There is an error'}, could server do something so that this response could be handled in jquery.ajax() error callback instead of success callback?


More From » ajax

 Answers
15

The error callback will be executed when the response from the server is not going to be what you were expecting. So for example in this situations it:




  • HTTP 404/500 or any other HTTP error message has been received

  • data of incorrect type was received (i.e. you have expected JSON, you have received something else).



In your situation the data is correct (it's a JSON message). If you want to manually trigger the error callback based on the value of the received data you can do so quite simple. Just change the anonymous callback for error to named function.



function handleError(xhr, status, error){

//Handle failure here

}

$.ajax({

url: url,
type: 'GET',
async: true,
dataType: 'json',
data: data,

success: function(data) {
if (whatever) {
handleError(xhr, status, ''); // manually trigger callback
}
//Handle server response here

},

error: handleError
});

[#91832] Sunday, June 5, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
sidneyh

Total Points: 118
Total Questions: 108
Total Answers: 105

Location: Mali
Member since Fri, Jun 18, 2021
3 Years ago
sidneyh questions
Tue, Jun 7, 22, 00:00, 2 Years ago
Wed, Apr 13, 22, 00:00, 2 Years ago
Wed, Aug 12, 20, 00:00, 4 Years ago
Wed, Jun 3, 20, 00:00, 4 Years ago
Fri, Apr 24, 20, 00:00, 4 Years ago
;