保存响应Api的令牌

时间:2017-04-25 23:04:44

标签: angular laravel ionic2

我试图保存服务器在每次请求时发送的令牌。虽然显然"授权"在响应中出现,我无法打印该值。

代码为: ionic2

服务器返回: enter image description here

我可以打印到控制台的内容: enter image description here

在服务器上,我使用cors的中间件: enter image description here

如何获取来自Header Authorization的令牌?

1 个答案:

答案 0 :(得分:1)

看起来您没有正确公开标题,除非您指定,否则浏览器不会将此标题转发到您的代码。

尝试将此添加到您$headers对象

'Access-Control-Expose-Headers' => 'Authorization'