任何想法或者我必须切换到db /文件系统?
解决方法
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设备(您在此问题中的目标),这样可以增加/减少数据的空间分配.
请注意相关问题: