我对localstorage进行了以下调用,我知道它返回了一个JWT的对象。
console.log('You have stored the following: ' + window.localStorage.getItem(this.LOCAL_TOKEN_KEY));
但是在consol.log中我只是得到了对象。
我试过用.json()来解析它,但这不起作用。
答案 0 :(得分:1)
您必须将密钥传递给getItem方法。给定键时,getItem()方法将返回键值。
尝试:window.localStorage.getItem('LOCAL_TOKEN_KEY')
https://developer.mozilla.org/en-US/docs/Web/API/Storage/getItem