Angular,无法从响应头访问授权

时间:2018-01-15 06:38:08

标签: angular http header response

enter image description here enter image description here我正在调用登录api,api正在响应头中发送授权令牌,我可以看到来自chrome dev工具网络的授权和令牌,但在登录服务中,我看不到授权response.header中的数据。

登录

 return this.http.post('http://login_url', formData, options )
        .subscribe((response : Response ) => {

         let userJson = response.headers;
         console.log("Data",userJson);

        },
        error => console.log(error)
       );[![enter image description here][1]][1]

1 个答案:

答案 0 :(得分:0)

如果要使用 授权标头

Authorization: Bearer eyJhbGciOiJIUzI1NiJ9...

您还应该添加服务器响应 公开标头 ,以使其可用于浏览器

access-control-expose-headers: Authorization,authorization