Vuejs从头部获取令牌

时间:2017-03-05 18:28:40

标签: javascript vue.js vuejs2

我有来自服务器的响应,并且有身份验证令牌,最大年龄和其他一些值。在Postman看起来像: enter image description here

我想将它设置为localStorage但不知道如何在vuejs文件中获取值,我尝试了这段代码:

this.$http.post('http://localhost:8081/login', data)
        .then(response =>{
          console.log(response.header.Authorization);
        })

但是有一个错误:

Uncaught (in promise) TypeError: Cannot read property 'Authorization' of undefined

如何从标题中读取我的令牌?

1 个答案:

答案 0 :(得分:1)

使用headers

response.headers.get('Authorization');