我制作了一个http拦截器,我需要在其中评估responese头并找到特定的(授权)。拦截器本身正在工作,但它无法列出我在服务器端设置的标头,我可以清楚地看到设置在firebug的网络选项卡中。
拦截器:
app.factory('HttpItc', function($q, $localStorage, $injector) {
return {
response: function (response) {
//console.log(response); // Contains the data from the response.
var freshJwt = response.headers['Authorization'];
if (freshJwt) {
$localStorage.jwt = freshJwt;
}
// Return the response or promise.
return response;
} };});
这就是我在服务器端Express中设置标头的方法:
return res
.header('Authorization', jwt)
.header('testHeader', 'testValue')
.json(user);
发生了什么事?如何在http的拦截器中访问响应头?
答案 0 :(得分:5)
解决方案是调用response.headers('...')
(作为函数,而不是数组)。
还要确保在后端显式公开标题。
编辑: 要在后端显式公开标头,您需要添加类似
的内容response.addHeader("Access-Control-Expose-Headers","yourHeaderName");
这类似于添加CORS标头,目前不适用于' *'