带有AngularJS的全局Ajaxerror handling程序

当我的网站是100%的jQuery,我曾经这样做:

$.ajaxSetup({ global: true, error: function(xhr, status, err) { if (xhr.status == 401) { window.location = "./index.html"; } } }); 

为401错误设置全局处理程序。 现在,我使用$resource$http angularjs做我的(REST)请求到服务器。 有没有什么办法类似地设置angular度的全球error handling程序?

我也build立了一个有angular度的网站,我遇到了全球401处理的同样的障碍。 当我遇到这个博客文章时,我结束了使用http拦截器。 也许你会发现像我一样有帮助。

“在AngularJS(或类似的)应用程序中的身份validation” , espeo软件

编辑:最终解决scheme

 angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives'], function ($routeProvider, $locationProvider, $httpProvider) { var interceptor = ['$rootScope', '$q', function (scope, $q) { function success(response) { return response; } function error(response) { var status = response.status; if (status == 401) { window.location = "./index.html"; return; } // otherwise return $q.reject(response); } return function (promise) { return promise.then(success, error); } }]; $httpProvider.responseInterceptors.push(interceptor); 

请注意,responseInterceptors已被Angular 1.1.4弃用。 下面你可以find一个基于官方文档的摘录,显示实现拦截器的新方法。

 $provide.factory('myHttpInterceptor', function($q, dependency1, dependency2) { return { 'response': function(response) { // do something on success return response || $q.when(response); }, 'responseError': function(rejection) { // do something on error if (canRecover(rejection)) { return responseOrNewPromise; } return $q.reject(rejection); } }; }); $httpProvider.interceptors.push('myHttpInterceptor'); 

这是它在我的项目中使用Coffeescript:

 angular.module("globalErrors", ['appStateModule']).factory "myHttpInterceptor", ($q, $log, growl) -> response: (response) -> $log.debug "success with status #{response.status}" response || $q.when response responseError: (rejection) -> $log.debug "error with status #{rejection.status} and data: #{rejection.data['message']}" switch rejection.status when 403 growl.addErrorMessage "You don't have the right to do this" when 0 growl.addErrorMessage "No connection, internet is down?" else growl.addErrorMessage "#{rejection.data['message']}" # do something on error $q.reject rejection .config ($provide, $httpProvider) -> $httpProvider.interceptors.push('myHttpInterceptor') 

使用以下内容创build文件<script type="text/javascript" src="../js/config/httpInterceptor.js" ></script>

 (function(){ var httpInterceptor = function ($provide, $httpProvider) { $provide.factory('httpInterceptor', function ($q) { return { response: function (response) { return response || $q.when(response); }, responseError: function (rejection) { if(rejection.status === 401) { // you are not autorized } return $q.reject(rejection); } }; }); $httpProvider.interceptors.push('httpInterceptor'); }; angular.module("myModule").config(httpInterceptor); }());