(如何)可以增加Android WebView中LocalStorage的配额限制

我需要增加 Android WebView中LocalStorage的认配额限制.目前我只能使用2.5MB左右.当尝试存储更多数据时,会引发quota_exceeded_err(dom异常22).

任何想法或者我必须切换到db /文件系统?

解决方法

我们在谈论HTML5 WebStorage DOCS

同一主题有很多问题,只有Android特定的

> HTML5 localStorage size limit for subdomains
> What is the max size of localStorage values?
> HTML5 LocalStorage size

事实是,HTML5 WebStorage在不同的平台上受到不同的实现.
桌面和移动平台浏览器组合分配给每个网站(域)的内存大小(磁盘空间)配额不同

而不,您不能增加/减少为您的HTML5应用程序分配的空间,所以在WebSettings中没有像Android WebKit设置Java访问器类这样的选项,既不在现在的Web Web服务器中实现HTML5 WebStorage.

引用:http://dev.w3.org/html5/webstorage/#disk-space

A mostly arbitrary limit of five megabytes per origin is recommended. Implementation Feedback is welcome and will be used to update this suggestion in the future.

如果您真的需要HTML5应用程序中的大空间(无论是通过phongap,Titanium,Rhodes还是另一个…),我将严格建议您使用HTML Web SQL Database

即使DOCS说:

This document was on the W3C Recommendation track but specification work has stopped. The specification reached an impasse: all interested implementors have used the same sql backend (sqlite),but we need multiple independent implementations to proceed along a standardisation path.

Web sql现在只支持Android设备(您在此问题中的目标),这样可以增加/减少数据的空间分配.

请注意相关问题:

> HTML5 IndexedDB,Web SQL Database and browser wars

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...