标签: angularjs http-headers config
我该怎么做:
$httpProvider.defaults.headers.common["Authorization"]='123';
从模块config()方法以外的地方,但仍然可以为该模块的所有请求(应用程序范围)全局行动。?
config()
感谢。
答案 0 :(得分:2)
实际上非常简单,你可以随时在config()阶段之后在$http对象上设置它:
$http
$http.defaults.headers.common["Authorization"]='123';