码迷,mamicode.com
首页 > Web开发 > 详细

angualrjs 配置超时时间

时间:2018-04-01 13:18:19      阅读:1229      评论:0      收藏:0      [点我收藏+]

标签:bubuko   ora   判断   mod   time   分享   设置   xhr   取消   

timeout 1


本想通过$httpProvider的defaults属性配置timeout时间, defaults中没有这个属性.
https://docs.angularjs.org/api/ng/provider/$httpProvider#defaults

timeout 2


在拦截器中为request的config配置timeout, 在response中根据xhrStatus=timeout来处理超时. 奈何response中没找到这个xhrStatus
技术分享图片

官网里说status=-1表示请求被取消, timeout时就会取消请求, 那就用这个来判断吧
https://docs.angularjs.org/api/ng/service/$http#$http-returns
技术分享图片
技术分享图片

代码


(function() {

  angular.module("mobile")

    .factory(‘HttpInterceptor‘, [‘$q‘,
      function($q) {
        return {
          request: function(config) {
            // 设置超时时间, 毫秒
            config.timeout = 1;

            if (config.url.search("service/") < 0)
              return config;
            if (localStorage.getItem(‘token‘)) {
              config.params = config.params || {};
              config.params[‘token‘] = localStorage.getItem(‘token‘);
              config.params[‘t‘] = new Date().getTime();
            }
            return config;
          },
          requestError: function(err) {
            return $q.reject(err);
          },
          response: function(res) {
            console.log(‘res: ‘,res);

            if(res.statusText==‘timeout‘)
            {
              console.log(‘timeout: ‘,111);
            }
            if (res.data && res.data.code) {
              switch (res.data.code) {
                case ‘000‘:
                  return res
                case ‘100‘:
                  // alert(res.data.msg)
                  // 账号未注册
                  localStorage.removeItem(‘token‘);
                  localStorage.removeItem(‘groupid‘);
                  return res
                case ‘200‘:
                  // session 无效
                  console.log(res.data.msg)
                  localStorage.removeItem(‘token‘);
                  localStorage.removeItem(‘groupid‘);
                  window.location.href = ‘‘;
                  break
              }
            }

            return res
          },
          responseError: function(err) {
            if (-1 === err.status) {
              // 请求超时
              alert(‘请求超时‘);
            } else if (500 === err.status) {
              // 处理各类自定义错误
            } else if (501 === err.status) {
              // ...
            }
            return $q.reject(err);
          }
        };
      }
    ])

    .config([‘$httpProvider‘,
      function($httpProvider) {
        $httpProvider.interceptors.push(‘HttpInterceptor‘);
      }
    ])

})();

angualrjs 配置超时时间

标签:bubuko   ora   判断   mod   time   分享   设置   xhr   取消   

原文地址:https://www.cnblogs.com/wancy86/p/8686056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!