使用本地存储

发布于 2024-11-26 18:10:10 字数 53 浏览 0 评论 0原文

我正在构建在线操作系统并遇到问题。 是否可以将数据添加到本地存储对象的当前值而不删除当前值?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

当梦初醒 2024-12-03 18:10:10

有点儿。所有本地存储变量(据我所知。如果我错了请纠正我)都存储为字符串。因此,可以通过将数据附加到现有值来将一些数据“添加”到本地存储变量中。例如

localStorage["myHandle"] += "blah";

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.

localStorage["myHandle"] += "blah";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文