HTML5 本地存储

发布于 2024-11-01 07:03:37 字数 37 浏览 1 评论 0原文

HTML5 localStorage 的真正实际用途是什么?

what could be the real practical use of HTML5 localStorage?

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

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

发布评论

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

评论(4

呢古 2024-11-08 07:03:37
  1. 缓存来自在线 Web 应用程序的数据,以便该应用程序可以在离线场景中使用(尽管只有缓存的数据)。

  2. 保留用户特定的 UI 状态,例如用户所在的页面、滚动位置等(如果您确实想做这类事情)。

  3. 在网络应用程序中保留瞬态数据(即用户部分填写了表单,然后导航到应用程序中的另一个页面,然后决定返回。您可以允许他们从上次中断的地方继续)。

  4. 允许用户离线时在您的应用中输入数据,然后在用户下次在线时将数据发送到后台的服务器。

  1. Caching data from an online web application so that the application can be used in offline scenarios (albeit with only the cached data).

  2. Persisting user specific UI state like what page a user is on, scroll position, etc. (if you really wanted to do that kind of thing).

  3. Persisting transient data in a web application (i.e. A user partially fills out a form and then navigates to another page in your application then decides to come back. You can allow them to pick up where they left off).

  4. Allow a user to enter data in your app while offline and then send the data to the server in the background next time the user is online.

倾城月光淡如水﹏ 2024-11-08 07:03:37

我用它来拯救/自动保存表单内容。

例如,如果用户意外关闭浏览器或离开页面,则可以避免数据丢失。

查看我的插件: https://github.com/simmo/JQuery-Rescue

I use it for rescuing/autosaving form content.

For example if a user accidentally closes the browser or navigates away from the page data loss can be avoided.

Check out my plugin: https://github.com/simmo/JQuery-Rescue

苍景流年 2024-11-08 07:03:37

我使用 localStorage 创建了一个插件,它执行以下操作

1.存储背景模式(图像模式或颜色模式)。

2.将图像存储为base64。

3.存储图像和颜色选项(自定义、选择、随机、自动更改)。

4.存储设置。

这样你可以使用 LocalStorage 来存储数据并提高性能,但你最多只能存储 5MB 的数据。

I used localStorage to create a Plugin that does the following thing

1.Stores background mode(image mode or color mode).

2.Stores image as base64.

3.Stores image and color options(custom,choose,random,auto change).

4.Stores Settings.

Like this u can use LocalStorage for storing data and improve performance But u can store in upto 5MB data only.

苏别ゝ 2024-11-08 07:03:37

我用它来保存本地站点主题设置,这些设置没有业务被设置(和广播)为cookie。我编写了一个工具来帮助我,名为 localDataStorage。它透明地设置/获取数组、布尔值、日期、浮点数、整数、字符串和对象。它提供轻量级数据混淆(为了安全)并智能压缩字符串。该实用程序允许您按键(名称)或(键)值或数据类型进行查询,检查重复值,并支持写保护键的概念。注意:我是该实用程序的作者。

I use it to save local site theme settings that have no business being set (and broadcast) as cookies. I wrote a tool to help me, called localDataStorage. It transparently sets/gets Arrays, Booleans, Dates, Floats, Integers, Strings and Objects. It provides lightweight data obfuscation (for security) and intelligently compresses strings. The utility lets you query by key (name) or (key) value or data type, checks for duplicate values, and supports the notion of write-protected keys. Note: I am the author of the utility.

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