我试图使用 chrome 中的文件系统 API 创建一个文件。最初我尝试如下持久存储
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
webkitStorageInfo.requestQuota(webkitStorageInfo.PERSISTENT, 1024*1024,
function(grantedBytes) {
window.requestFileSystem(webkitStorageInfo.PERSISTENT, grantedBytes, onInitFs,
errorHandler);
},
errorHandler);
它最初工作正常。但是现在当我尝试相同的代码时给了我以下错误
NOT_SUPPORTED_ERR: DOM Exception 9
然后我尝试了 TEMPORARY 文件存储如下
window.requestFileSystem(TEMPORARY, 1024*1024, onInitFs, errorHandler);
这给了我一些带有代码 2 的 FileError,这意味着安全错误。谁能帮我解决这些问题?