使用 AngularJS 的全局 Ajax 错误处理程序

IT技术 javascript ajax angularjs
2021-03-15 22:44:21

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

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

为 401 错误设置全局处理程序。现在,我使用 angularjs$resource$http向服务器发出我的(REST)请求。有什么方法可以类似地设置带有角度的全局错误处理程序吗?

3个回答

我也在用 angular 构建一个网站,我遇到了同样的全局 401 处理障碍。当我看到这篇博文时,我最终使用了 http 拦截器。也许你会发现它和我一样有用。

“基于 AngularJS(或类似)的应用程序中的身份验证。” , espeo 软件

编辑:最终解决方案

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);
需要返回 $q.reject(response); 当状态 == 401 时,避免嘈杂的角度错误
2021-04-21 22:44:21
@uriDium 对,我的观点是使用角度提供的对象,以便您可以模拟和测试。
2021-04-22 22:44:21
$httpProvider.responseInterceptors 现在已弃用。请参阅docs.angularjs.org/api/ng.$http#description_interceptors
2021-04-26 22:44:21
成功时,您需要像return response || $q.when(response);这样返回,如果响应为空,则还返回一个Promise对象。
2021-04-28 22:44:21
@daniellmb。这取决于。如果您真的想转到另一个页面,而不仅仅是更改视图,那么您实际上应该使用 $window。如果您的登录页面只是带有角度的另一个视图和控制器,那么您可以使用 $location.path
2021-05-06 22:44:21

请注意 responseInterceptors 已被 Angular 1.1.4 弃用。您可以在下面找到基于官方文档的摘录,展示了实现拦截器的新方法。

$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')
但是在 responseError 拦截器中您将没有 xhr 数据或其他有用的信息。甚至无法确定它是否可恢复。
2021-04-16 22:44:21
事实上,我已经编辑了我的答案,以展示我如何使用 Coffeescript 在我的项目中做到这一点。如果您更喜欢在 Javascript 中使用js2coffee.org
2021-04-29 22:44:21
函数response下的所有引用不应该responseError实际上都是对的引用rejection(或者参数的名称应该更改为response?
2021-05-01 22:44:21
最后一行是否$httpProvider...被包裹在一个config()块中?
2021-05-06 22:44:21
@ zw0rk你会......里面responseErrorrejection有你需要的一切。
2021-05-10 22:44:21

<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);
}());
@ThilakRaj 上面的代码应该在每个 http 请求上运行。因此,在 Chrome 中创建两个断点,一个在“return response”行上,一个在“return $q.reject”行上,以检查它是否按预期运行。
2021-05-02 22:44:21