将全局回调添加到$ .ajaxSetup

时间:2013-04-08 14:02:15

标签: javascript ajax jquery callback

我使用$.ajaxSetup来使用全局授权方法,并在我的网站中使用全局错误处理。我想将回调函数传递给全局错误方法,这样我就可以在全局错误处理程序中随时调用该函数。这是我的$.ajaxSetup

    $.ajaxSetup({
       global: false,
       // type: "POST",
        beforeSend: function (xhr) {
            //The string needs to be turned into 'this.pasToken'
            //if not us, don't include
            if(app.cookieAuth)
                xhr.setRequestHeader("Authorization", _this.pasToken);
        },
        statusCode: {
            401: function(){
                //Redirect to the login window if the user is unauthorized
                window.location.href = app.loginUrl;
            },
            //This is where I need help
            403: function(error, callback){
                //Show an error message if permission isn't granted
                callback(error);
                alert(JSON.parse(error.responseText)['Message']);
            }
        }
     });

请注意403:状态代码。我试图传递回调函数,但我不知道如何从单独的ajax调用中执行此操作。有人有想法吗?

2 个答案:

答案 0 :(得分:7)

最简单的解决方案;为ajax选项定义自己的属性。

$.ajaxSetup({
    statusCode: {
        403: function(error, callback){
            this.callback403(error);
        }
    }
});

$.ajax({
    callback403: function () {}
});

注意,如果您更改了ajax请求的context选项,则可能无效。

答案 1 :(得分:-1)

我不确定这是否是您要找的:

$.ajax({
    statusCode: {
       404: function() {
     alert("page not found");
    }
   }
   });