localStorage存储不正确

时间:2018-11-28 03:57:47

标签: javascript html5 reactjs local-storage

我正在尝试将基本密钥和数据保存到本地存储中。

我正在这样做localStorage.setItem('theKey', 'theData');

由于某种原因,当我在chrome中检查我的localStorage时,我只会看到'theData'作为键存储,没有任何值。这是我看到的:

enter image description here

关于为什么会这样的任何想法?这是一个React应用,本地存储的表现与React有区别吗?

谢谢

3 个答案:

答案 0 :(得分:2)

键值容器似乎已隐藏在控制台中,请尝试此操作。

enter image description here

enter image description here

答案 1 :(得分:1)

打开Web控制台并运行命令localStorage.getItem('theKey')

如果仍然看不到,请尝试使用window.localStorage.setItem('theKey', 'theData')

设置密钥

答案 2 :(得分:-1)

将theData变量而不是'theData'保存为字符串值。

localStorage.setItem('theKey', theData);