AngularJS:如何阻止请求

前端之家收集整理的这篇文章主要介绍了AngularJS:如何阻止请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用angularjs拦截器阻止请求?
$provide.factory('myHttpInterceptor',function($q,someService) {
  return {
    'request': function(config) {
      // here I'd like to cancel a request depending of some conditions
    }
  }
});

$httpProvider.interceptors.push('myHttpInterceptor');
在1.1.5及更高版本中,您可以使用配置对象的“timeout”属性.

documentation

timeout – {number|Promise} – timeout in milliseconds,or promise that
should abort the request when resolved.

简单的例子:

$provide.factory('myHttpInterceptor',someService) {
  return {
    'request': function(config) {

        var canceler = $q.defer();

        config.timeout = canceler.promise;

        if (true) {

            // Canceling request
            canceler.resolve();
        }

        return config;
    }
  }
});

$httpProvider.interceptors.push('myHttpInterceptor');
原文链接:https://www.f2er.com/angularjs/143275.html

猜你在找的Angularjs相关文章