我正在开发一个离线应用程序,我必须将文件保存在 html5 fs-sandbox 中。在 Chrome 的桌面上一切正常。
但是我的安卓设备一直在崩溃,10-12 10:49:53.953: A/libc(9231): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1)
直到我打电话window.requestFileSystem(window.PERSISTENT, 5*1024*1024, fsInit, errorHandler);
因为window.storageInfo
没有在我的 WebView 中定义,所以我无法requestQuota
先调用。但是window.requestFileSystem
已定义,我认为崩溃是由于缺少授予的配额。即使使用window.TEMPORARY
和/或较小的尺寸也会导致错误。
更新: 错误报告:http ://code.google.com/p/android/issues/detail?id=38420