问题标签 [web-storage]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
157 浏览

c# - 可通过代码访问的免费网络存储

我有一个供个人使用的桌面应用程序,我希望它能够将其数据与网络同步。

由于它不是 trancational,我想一个解决方案可能是将批次(反)序列化为纯文本格式并将其存储在网络上的某个文件中。

现在我正在寻找一种可以通过代码访问它的免费存储,无论是 HTTP 还是 FTP,这对我来说都是一样的。当然,我希望它“稳定”,所以不是一些模糊的免费服务,可以在没有事先通知的情况下随时停止,也不是连接不良/大量停机的服务。

如果碰巧谷歌搜索正确术语的任何人都无法轻松获得数据,那就太好了,但这是可选的,因为我可以对其进行加密。

我在考虑谷歌文档,但实际上任何事情都会做,只要它是

  • 自由
  • 稳定(稳定/值得信赖)
  • 通过代码访问
  • 密码保护(可选)

当代码片段与建议的解决方案一起出现时,这将是非常好的!我正在使用 C#

0 投票
1 回答
3571 浏览

html - HTML5 Web Storage Cleared when Browser Clear Cache?

Is HTML5 Web Storage cleared when the browser clears its cache? If it does, many people like me may lose data if they accidentally clear cache? or like in this comment ...

Since HTML5 local storage is kept separate from js cookies (like Silverlight, Gears, Flash), it opens up a world of 3rd party privacy issues for HTML5 as these objects will likely NOT get deleted with a clear cache or delete temporary data

... where web storage is not cleared, but leads to privacy issues?

0 投票
3 回答
1108 浏览

javascript - 在 Safari (WebKit) Web Sql 数据库中同步 executeSql

WebKit(Safari 4+ 是我的重点)有一个称为 Web SQL 的功能。W3C 草案中指定了 Web SQL 。目前仅支持异步风格。

我有一种情况,我想同步一些不同的操作——写入数据库(使用 CREATE TABLE 查询,然后循环通过 INSERT 查询),然后从数据库中读取。我该怎么做呢?我用谷歌搜索并阅读了很多教程,但没有找到任何解释。

如果我找不到答案,我将尝试 Worker 功能,如果不成功,我计划将数据存储在webstorage (localstorage)中。

0 投票
1 回答
690 浏览

html - 示例 Ext Js 状态提供?

谁能告诉我 Ext JS 提供程序的示例,特别是如果它打算使用任何 HTML 5 存储机制。

谢谢。

0 投票
3 回答
1037 浏览

javascript - Webapp可以离线工作!

我必须设计一个能够离线工作的 webapp。

所以有很多工作点在正常模式下在线工作,连接到中央服务器。

现在有时由于不同的原因,中央服务器可能不可用。(没有互联网,服务器崩溃等)因此需要进入离线工作模式。不需要完全工作只是为了做一些工作,因为客户不应该等待,所以应该可以开具发票(具体案例)。

我已经想到了一个自定义解决方案,但我想知道您是否知道一个框架或已经做这些事情的东西。

谢谢 !

0 投票
1 回答
1564 浏览

html - HTML5 客户端存储:WebSqlDatabase 与 WebStorage 与索引数据库

我对 HTML5 中客户端存储的能力有一些疑问。到目前为止,我发现有三种不同的可能性:

  • WebSQLDatabase:支持存储在 SQLite 数据库中的客户端站点 SQL 表。本标准废止。这是否意味着当前支持此功能的浏览器将来会放弃此支持?

  • WebStorage和 IndexedDB 似乎与我非常相似。它们都提供键/值存储功能。区别在哪里?

0 投票
3 回答
29727 浏览

javascript - Firefox 在哪里存储 javascript/HTML localStorage?

我已经为一个简单的 Web 应用程序制作了一个高级功能原型,而延迟已经将它推到了“上线”的位置。

目前,它只是使用 JavaScript 的localStorage工具来跟踪正在发生的事情,但由于偏执狂,我们不希望它被损坏导致数据丢失(当然感觉有点粗略,从不与服务器通信)。

Firefox 将其数据库保存在哪里localStorage(我认为它是 SQLite,但我就是找不到)?

0 投票
2 回答
1637 浏览

javascript - Save user input on HTML page using HTML5 web storage

I am creating a crossword puzzle web app that pulls XML data from a server, parses the data with javascript and builds the puzzle on the page using the [canvas] tag. When a user selects a clue and types in a correct answer, letters are placed in the corresponding squares of the crossword puzzle.

Here's a snippet of the code that places the letters in the corresponding squares:

My question is, how do I save the state of the puzzle and the XML (using HTML5 web storage) so that the user can play offline and to prevent them from losing their progress in the event of a browser refresh?

Can anyone help me with this one, I am not very familiar with the HTML Web Storage API...but I hear that it is a valuable tool for web apps. Your advice will be much appreciated.

Thanks, Carlos

0 投票
2 回答
208 浏览

javascript - 如何在 web sql 中存储列表或在浏览器中存储任何类型的存储

如何在 web sql 中存储列表或在浏览器中存储任何类型的存储,我找到了三种在浏览器中存储数据的方法,即 localstorage、session storage 和 web sql with html5,所以我需要存储 java.util。在浏览器中列出,以后需要修改,有什么办法吗?

0 投票
1 回答
715 浏览

html - HTML5 web storage abstraction libraries

From what I've read of web storage in HTML5, there are a number of different storage options with varying support across different browsers.

Are there any popular libraries for abstraction of web storage in HTML5 applications?