2

I got a "Persistent storage maximum size reached" error when I call the following code:

    localStorage.setItem('key', 1);

But when I get the length attribute of the localStorage, the result is 0:

    localStorage.length; // returns 0

The problem occurred on my Firefox 13.0.1 Mac version

4

2 回答 2

5

localStorage/sessionStorage限制可以设置为零。使用以下过程进行检查:

  • 打开配置地址:about:config
  • 在搜索中键入存储查询:storage
  • 检查配额值:dom.storage.default_quota
  • 将其更改为非零值

参考

于 2016-11-22T23:58:30.813 回答
-1

我能够通过基本上清除以下所有内容来解决此问题:首选项->隐私->清除您最近的历史记录(清除所有历史记录)

我最终检查了所有复选框并点击立即清除。

我们遇到了同样的问题,一些本应存储在 localStorage 中的数据由于存储中的其他一些项目而没有被填充。这清除了它。我想也许是饼干,但我现在不确定。

于 2013-08-01T15:40:16.393 回答