我在如何从localStorage调用中查看对象时遗漏了一些东西

时间:2018-02-14 23:25:13

标签: angular

我对localstorage进行了以下调用,我知道它返回了一个JWT的对象。

console.log('You have stored the following: ' + window.localStorage.getItem(this.LOCAL_TOKEN_KEY));

但是在consol.log中我只是得到了对象。

我试过用.json()来解析它,但这不起作用。

1 个答案:

答案 0 :(得分:1)

您必须将密钥传递给getItem方法。给定键时,getItem()方法将返回键值。

尝试:window.localStorage.getItem('LOCAL_TOKEN_KEY')

https://developer.mozilla.org/en-US/docs/Web/API/Storage/getItem