在AngularJS模块的config()方法之外设置$ httpProvider公共头

时间:2013-11-12 14:48:37

标签: angularjs http-headers config

我该怎么做:

$httpProvider.defaults.headers.common["Authorization"]='123';

从模块config()方法以外的地方,但仍然可以为该模块的所有请求(应用程序范围)全局行动。?

感谢。

1 个答案:

答案 0 :(得分:2)

实际上非常简单,你可以随时在config()阶段之后在$http对象上设置它:

$http.defaults.headers.common["Authorization"]='123';