角度超时不起作用

时间:2015-05-19 07:42:39

标签: javascript angularjs html5 angularjs-scope angularjs-service

我在使用angualrjs的不同方式下尝试过以下代码。但是请求标头和应用程序流中的连接超时没有反映。我已经经历了许多角度js站点。但没有输出。

   angular.module('MyApp', [])
        .config(['$httpProvider', function($httpProvider) {
       $httpProvider.defaults.timeout = 5000;
     }]);

1 个答案:

答案 0 :(得分:1)

看起来你正在写错了对象(defaults而不是defaults.headers)。

  

默认值也可以在运行时通过$ http.defaults对象设置   以同样的方式。例如:

module.run(function($http) {  
   $http.defaults.headers.common.Authorization = 'Basic YmVlcDpib29w' });
}
来自here

。试着这样做。

或者当您的请求被发送时(与以下几行之前相同的来源):

var req = {
 method: 'POST',
 url: 'http://example.com',
 headers: {
   'Content-Type': undefined
 },
 data: { test: 'test' }
}

$http(req).success(function(){...}).error(function(){...});