ajax请求中的angularjs错误处理

时间:2014-12-29 08:29:31

标签: ajax angularjs error-handling exception-handling angularjs-routing

我想在我的应用程序中编写一个错误处理部分我使用下面的代码但是当错误500出现时它的工作正常但是有一个小的或者很大的问题,那就是页面加载起初和几秒后错误页面加载,如何删除这几秒钟并直接转到错误页面而不加载发布错误的主页?有没有办法在执行其控制器后加载html模板?

var interceptor = ['$rootScope', '$q', function (scope, $q) {

        function success(response) {
            return response;
        }

        function error(response) {
            var status = response.status;
            if (status == 500) {
              window.location= "http://www.domain.lan/#!/error";


                return;
            }
             if (status == 403) {

                // window.location = "dashboard";
                return;
            }
            // otherwise
            return $q.reject(responseInterceptors);

        }

        return function (promise) {
            return promise.then(success, error);
        }

    }];
    $httpProvider.responseInterceptors.push(interceptor);

1 个答案:

答案 0 :(得分:3)

我假设您使用的是角度ui-router。

首先需要在$ stateProvider配置中添加一个状态,以便通过ui-router了解“错误”状态。

路由配置代码

//added state to understand error
$stateProvider.state("error": {
   url: "/error",
   templateUrl: '/views/error.html',
   controller: 'errorCtrl' //optional if you want any specific functionality
});         

你做了window.location并设置了url,window.location导致页面刷新。而不是使用window.location使用window.location.hash

拦截功能改变

var interceptor = ['$rootScope', '$q', '$location', function (scope, $q, $location) {
function success(response) {
    return response;
}

function error(response) {
    var status = response.status;
    if (status == 500) {
      //window.location= "http://www.domain.lan/#!/error";
      //window.location.hash= "/error"; //it will rewrite the url without refreshing page
      $location.path('error');
      return;
    }
     if (status == 403) {

        // window.location = "dashboard";
        return;
    }
    // otherwise
    return $q.reject(responseInterceptors);

}

return function (promise) {
    return promise.then(success, error);
}

}];
$httpProvider.responseInterceptors.push(interceptor);

其他方式你可以尝试相同的$ state.go('错误');不要忘记添加$ state dependancy。

希望这会对你有所帮助。 如果仍有任何混淆,请告诉我。