当连接可用时,将我的网页与服务器同步(又称离线模式)

发布于 2024-08-25 03:58:32 字数 138 浏览 5 评论 0 原文

我希望我的网页允许用户添加数据,即使他处于离线模式,并且可能将数据存储在本地存储(cookie、html5 存储)中。当用户再次上线时,页面应检测实时连接并将数据发布到服务器。

有主流方法可以做到这一点吗?也许是 JavaScript 库或插件?

I'd like my web page to allow the user to add data, even when he's in offline mode and maybe store the data in local storage (cookies, html5 storage). When the user gets back online again, the page should detect the live connection and post the data to server.

Is there a mainstream way to do this? Maybe a javascript library or plugin?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

魔法唧唧 2024-09-01 03:58:32
  1. 将您的(json 化的)数据保存在 html5 localstorage 中(或使用像 persistJS 这样的库来拥有完整的跨浏览器支持,请参阅此博客文章以这种方式存储结构化数据的示例
  2. 有一个后台进程检查浏览器是否在线以与服务器同步(请参阅hacks.mozilla.org 上的这篇文章提供了在线同步的示例)。
  1. save your (json-ified) data in html5 localstorage (or use a library like persistJS to have full cross-browser support, see this blogpost for an example on storing structured data this way)
  2. have a background process check if browser is online to sync with server (see this article on hacks.mozilla.org for an example of online syncing).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文