在 HTML5 中使用本地存储我可以在不同用户之间共享它吗
我计划使用本地存储的html5功能来编写一个简单的应用程序,我想在多个浏览器(不同机器上的用户)之间共享数据库文件我不太担心锁定等,因为用户数量只是3-5.有人可以帮助我如何实现这一目标吗?
I'm planning to use html5 capability of localstorage to write a simple application, I would like to share the database file across multiple browsers(users on various machines) I'm not too worried about locking etc, as the number of users are only 3-5. Could anybody help on how i could achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的,因为数据存储在每个浏览器的数据库中。如果您的用户在 Chrome 和 FF 之间切换,则会使用不同的数据库。然而,数据在浏览器内的窗口之间共享。
The is not possible as the data is stored on a per browser database. If your user switched between say Chrome and FF, a differing database would be used. The data is however shared amongst windows within the browser.