使用本地存储
我正在构建在线操作系统并遇到问题。 是否可以将数据添加到本地存储对象的当前值而不删除当前值?
I am building an online os and have an issue.
Is it possible to add data to the current values of the local storage object without removing the current values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有点儿。所有本地存储变量(据我所知。如果我错了请纠正我)都存储为字符串。因此,可以通过将数据附加到现有值来将一些数据“添加”到本地存储变量中。例如
Kind of. All local storage variables (as far as I know. correct me if I'm wrong) are stored as strings. So "adding" a bit of data to a local storage variable could be done by appending it to the existing value. e.g.