我有来自服务器的响应,并且有身份验证令牌,最大年龄和其他一些值。在Postman看起来像:
我想将它设置为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
如何从标题中读取我的令牌?