Jquery Ajax error handling to ignore aborted

JqueryAjaxError Handling

Jquery Problem Overview


I want to have a global error handling method for ajax calls, this is what I have now:

$.ajaxSetup({
  error: function (XMLHttpRequest, textStatus, errorThrown) {
    displayError();
  }
});

I need to ignore the error of aborted. errorThrown is null and textStatus is error. How do I check for aborted?

Jquery Solutions


Solution 1 - Jquery

I had to deal with the same use case today. The app I am working on has these long-running ajax calls that can be interrupted by 1) the user navigating away or 2) some kind of temporary connection/server failure. I want the error handler to run only for connection/server failure and not for the user navigating away.

I first tried Alastair Pitts' answer, but it did not work because both aborted requests and connection failure set status code and readyState to 0. Next, I tried sieppl's answer; also did not work because in both cases, no response is given, thus no header.

The only solution that worked for me is to set a listener for window.onbeforeunload, which sets a global variable to indicate that the page has been unloaded. The error handler can then check and only call the error handler only if the page has not been unloaded.

var globalVars = {unloaded:false};
$(window).bind('beforeunload', function(){
    globalVars.unloaded = true;
});
...
$.ajax({
    error: function(jqXHR,status,error){
        if (globalVars.unloaded)
            return;
    }
});

Solution 2 - Jquery

In modern jQuery you can just check if request.statusText is equal to 'abort':

error: function (request, textStatus, errorThrown) {
    if (request.statusText =='abort') {
        return;
    }
}

Solution 3 - Jquery

Something I found is that when there is an aborted request, the status and/or readyState equal 0.

In my global error handler, I have a check at the top of the method:

$(document).ajaxError(function (e, jqXHR, ajaxSettings, thrownError) {
    //If either of these are true, then it's not a true error and we don't care
    if (jqXHR.status === 0 || jqXHR.readyState === 0) {
        return;
    }

    //Do Stuff Here
});

I've found this works perfectly for me. Hope this helps you, or anyone else who runs into this :)

Solution 4 - Jquery

You'll want to look at the textStatus argument passed into your error function. According to http://api.jquery.com/jQuery.ajax/, it can take the values "success", "notmodified", "error", "timeout", "abort", or "parsererror". "abort" is obviously what you want to check against.

Longer notes here: jquery-gotcha-error-callback-triggered-on-xhr-abort

Solution 5 - Jquery

Because bluecollarcoders answer doesn't work for ajax requests aborted by javascript, here is my solution:

var unloaded = false;
...
$(window).bind('beforeunload', function(){
    unloaded = true;
});


$(document).ajaxError(function(event, request, settings) {
    if (unloaded || request.statusText == "abort") {
        return;
    }
    ...
}

e.g.

handler = jQuery.get("foo")
handler.abort()

will now be ignored by ajaxError handler

Solution 6 - Jquery

Building upon Alastair Pitts'a answer, you can also do this to have more informative messages:

$(document).ajaxError(function (e, jqXHR, ajaxSettings, thrownError)
{
    {
        if (jqXHR.status === 0)
        {
            alert('Not connect.\n Verify Network.');
        } else if (jqXHR.status == 404)
        {
            alert('Requested page not found. [404]');
        } else if (jqXHR.status == 500)
        {
            alert('Internal Server Error [500].');
        } else if (exception === 'parsererror')
        {
            alert('Requested JSON parse failed.');
        } else if (exception === 'timeout')
        {
            alert('Time out error.');
        } else if (exception === 'abort')
        {
            alert('Ajax request aborted.');
        } else
        {
            alert('Uncaught Error.\n' + jqXHR.responseText);
        }
    }
});

Solution 7 - Jquery

$(document).ajaxError(function(event, jqXHR, ajaxSettings, thrownError) {
	
	if (!jqXHR.getAllResponseHeaders()) {
		return;
	}			
}); 

Solution 8 - Jquery

I had the same issue here, and what I did as solution was to set an "aborting" var just before the call of abort(), as below:

aborting = true;
myAjax.abort();

and only show the error on the error handler of the ajax request, if abort isn't true.

$.ajax({
	[..]
	error: function() {
		if ( !aborting ) {
			// do some stuff..
		}
		aborting = false;
	}
});

Solution 9 - Jquery

If you abort the ajax request manually, you can do like this:

var xhr;
function queryData () {
    if (xhr) {
      // tag it's been aborted
      xhr.hasAborted = true;

      // manually canceled request
      xhr.abort();
    }

    xhr = $.ajax({
        url: '...',
        error: function () {
            if (!xhr.hasAborted) {
                console.log('Internal Server Error!');
            }
        },
        complete: function () {
           xhr = null;
        }
    });
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionShawn McleanView Question on Stackoverflow
Solution 1 - JquerybluecollarcoderView Answer on Stackoverflow
Solution 2 - JqueryUdiView Answer on Stackoverflow
Solution 3 - JqueryAlastair PittsView Answer on Stackoverflow
Solution 4 - JqueryPaul RademacherView Answer on Stackoverflow
Solution 5 - JquerySano JView Answer on Stackoverflow
Solution 6 - JqueryLeniel MaccaferriView Answer on Stackoverflow
Solution 7 - JquerysiepplView Answer on Stackoverflow
Solution 8 - JqueryDiego MaloneView Answer on Stackoverflow
Solution 9 - JquerySkyView Answer on Stackoverflow