我知道我可以每次设置超时:
$http.get('path/to/service', {timeout: 5000});
...但是我想设置一个全局超时来保持我的代码为DRY。
我知道我可以每次设置超时:
$http.get('path/to/service', {timeout: 5000});
...但是我想设置一个全局超时来保持我的代码为DRY。
$http.post('path/to/service', {data:data});
Answers:
更新:$ http将不遵守默认设置,因为它在httpProvider中设置了超时(请参见注释)。可能的解决方法:https : //gist.github.com/adnan-i/5014277
原始答案:
angular.module('MyApp', [])
.config(['$httpProvider', function($httpProvider) {
$httpProvider.defaults.timeout = 5000;
}]);
这可以通过出血边缘angular.js(通过git master 4ae46814ff测试)来实现。
您可以使用请求http拦截器。像这样。
angular.module('yourapp')
.factory('timeoutHttpIntercept', function ($rootScope, $q) {
return {
'request': function(config) {
config.timeout = 10000;
return config;
}
};
});
然后在.config中注入$ httpProvider并执行以下操作:
$httpProvider.interceptors.push('timeoutHttpIntercept');
感谢您的帖子和更新!!
在专门针对此问题进行研究时$resource
,我想详细说明一下发现的内容:
$http
请求:https://github.com/angular/angular.js/issues/2190 http://code.angularjs.org/1.1.5/docs/api/ngResource.$resource
对于早期版本的我们,特别是我使用的是angular 1.0.6,可以在第396行编辑angular-resource.js的源文件,您将找到对$http
您可以在其中添加timeout属性的调用资源请求。
由于未提及它,因此我必须测试Stewie的解决方案,因此当发生超时时,在错误和中止/超时之间进行区分的方法是检查“状态”参数。它将返回0
超时而不是说404
:
$http.get("/home", { timeout: 100 })
.error(function(data, status, headers, config){
console.log(status)
}
由于在少数情况下,我需要使用超时而不是全局设置超时,因此我将请求包装在$timeout
函数中,如下所示:
//errorHandler gets called wether it's a timeout or resource call fails
var t = $timeout(errorHandler, 5000);
myResource.$get( successHandler, errorHandler )
function successHandler(data){
$timeout.cancel(t);
//do something with data...
}
function errorHandler(data){
//custom error handle code
}
我有相同的要求,我正在使用AngularJS 1.0.7。我提出了以下代码,因为上述解决方案对我而言似乎都不可行(从我希望超时在一个地方成为全局的意义上讲是可行的)。基本上,我米掩盖原来的$ HTTP方法和添加timeout
为每个$http
请求,并覆盖其它快捷方式,如get
,post
...这样他们就会使用新的屏蔽$http
。
JSFiddle用于以下代码:
/**
* @name ngx$httpTimeoutModule
* @description Decorates AngularJS $http service to set timeout for each
* Ajax request.
*
* Implementation notes: replace this with correct approach, once migrated to Angular 1.1.5+
*
* @author Manikanta G
*/
;(function () {
'use strict';
var ngx$httpTimeoutModule = angular.module('ngx$httpTimeoutModule', []);
ngx$httpTimeoutModule.provider('ngx$httpTimeout', function () {
var self = this;
this.config = {
timeout: 1000 // default - 1 sec, in millis
};
this.$get = function () {
return {
config: self.config
};
};
});
/**
* AngularJS $http service decorator to add timeout
*/
ngx$httpTimeoutModule.config(['$provide', function($provide) {
// configure $http provider to convert 'PUT', 'DELETE' methods to 'POST' requests
$provide.decorator('$http', ['$delegate', 'ngx$httpTimeout', function($http, ngx$httpTimeout) {
// create function which overrides $http function
var _$http = $http;
$http = function (config) {
config.timeout = ngx$httpTimeout.config.timeout;
return _$http(config);
};
$http.pendingRequests = _$http.pendingRequests;
$http.defaults = _$http.defaults;
// code copied from angular.js $HttpProvider function
createShortMethods('get', 'delete', 'head', 'jsonp');
createShortMethodsWithData('post', 'put');
function createShortMethods(names) {
angular.forEach(arguments, function(name) {
$http[name] = function(url, config) {
return $http(angular.extend(config || {}, {
method : name,
url : url
}));
};
});
}
function createShortMethodsWithData(name) {
angular.forEach(arguments, function(name) {
$http[name] = function(url, data, config) {
return $http(angular.extend(config || {}, {
method : name,
url : url,
data : data
}));
};
});
}
return $http;
}]);
}]);
})();
添加对上述模块的依赖关系,并通过配置来配置超时ngx$httpTimeoutProvider
,如下所示:
angular.module('App', ['ngx$httpTimeoutModule']).config([ 'ngx$httpTimeoutProvider', function(ngx$httpTimeoutProvider) {
// config timeout for $http requests
ngx$httpTimeoutProvider.config.timeout = 300000; // 5min (5 min * 60 sec * 1000 millis)
} ]);