我正在尝试从通话中获取价值localforage
,axios
但它不起作用。
axios.get('https://api.example.org/api/?uname=' + this.$getItem('LSuname'), {
withCredentials: true,
headers: {'Authorization': 'Bearer ' + this.$getItem('LSmytoken')}
})
我在控制台中收到 403 错误:
XHR 加载失败:获取“ https://api.example.org/api/?uname=[object%20Promise] ”。
我也尝试过this.$getItem('LSuname').then(value => { return value })
,this.$getItem('LSuname').then(function (value) { return value })
但我得到了相同的 403 和错误的 url,最后有一个承诺
我能够正确地返回值而不会在我的 vue 的其他地方出现问题,如下所示:
this.$getItem('LSuname').then(value => {
console.log('uname:' + value)
})