Wrap jQuery's $.ajax() method to define global error handling

前端 未结 4 1776
攒了一身酷
攒了一身酷 2021-01-03 20:54

Branching off of questions like this one, I\'m looking to wrap jQuery\'s $.ajax() method such that I can provide error handling in one location, which would then be used aut

相关标签:
4条回答
  • 2021-01-03 21:24

    I think it's a bad idea. I think wrapping $.ajax is fine, but you're talking about re-defining it. Anyone who doesn't realize this will get unexpected results.

    As others have mentioned, binding a handler to $.ajaxError is the way to go.

    0 讨论(0)
  • 2021-01-03 21:31

    You might want to look at $.ajaxError.

    $(document).ajaxError(function myErrorHandler(event, xhr, ajaxOptions, thrownError) {
      alert("There was an ajax error!");
    });
    

    jQuery provides a whole bunch of other ways to attach global handlers.

    To answer your edit, you can catch successful ajax requests with $.ajaxSuccess, and you can catch all (successful and failed) with $.ajaxComplete. You can obtain the response code from the xhr parameter, like

    $(document).ajaxComplete(function myErrorHandler(event, xhr, ajaxOptions, thrownError) {
      alert("Ajax request completed with response code " + xhr.status);
    });
    
    0 讨论(0)
  • 2021-01-03 21:39

    jQuery has a handy method called $.ajaxSetup() which allows you to set options that apply to all jQuery based AJAX requests that come after it. By placing this method in your main document ready function, all of the settings will be applied to the rest of your functions automatically and in one location

    $(function () {
        //setup ajax error handling
        $.ajaxSetup({
            error: function (x, status, error) {
                if (x.status == 403) {
                    alert("Sorry, your session has expired. Please login again to continue");
                    window.location.href ="/Account/Login";
                }
                else {
                    alert("An error occurred: " + status + "nError: " + error);
                }
            }
        });
    });
    

    Reference: https://cypressnorth.com/programming/global-ajax-error-handling-with-jquery/

    0 讨论(0)
  • 2021-01-03 21:40

    Actually, jQuery provides the hook, .ajaxError() just for this purpose. Any and all handlers you've bound with $ajaxError() will be called when an ajax request from page completes with an error. Specifying a selector allows you to reference this inside of your .ajaxError() handler.

    To use it to handle all ajax request errors on the page and use this to point to document, you could do something like this:

    $(document).ajaxError(function(event, request, settings){
       alert("Error requesting page: " + settings.url);
    });
    
    0 讨论(0)
提交回复
热议问题