向用户公开的本地存储
用户是否可以查看使用 localStorage API 存储的项目的值?就像饼干一样?
Are the values of items stored using the localStorage API viewable by users? Just like cookies?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Safari 和 Chrome 的网络检查器允许检查该数据,是的。我不确定其他浏览器如何处理它,但它肯定不是您可以依赖的不被编辑的东西。
Safari and Chrome's web inspector allows inspection of that data, yes. I'm not sure how other browsers handle it, but it's certainly not something you can depend on not being edited.
您可以轻松加载要向用户显示的项目。
只需在页面加载时使用 Javascript 循环遍历本地存储中的所有项目...
在 html 中,您将一个可以显示或隐藏的 div 粘贴在适当的位置。
如果他们单击链接,您就可以显示在页面加载期间填充并隐藏的 items_table。只要您没有加载数千个项目,它就会快速加载。
如果您愿意,我可以挖掘一个链接,用于在样式显示属性的块和无之间切换显示。
You can easily load the items to be displayed to users.
Just loop through all the items in local storage using Javascript as the page loads...
In the html, you stick a div that can be shown or hidden, in an appropriate place.
If they click a link, you can then display items_table that is populated during page load, and hidden. So long as you don't have thousands of items to load, it loads quickly.
I can dig up a link to toggling the display between block and none for the style display property if you like.