我在android中使用window.requestFileSystem。但它失败了错误代码9 。我已经阅读了here Android设备没有SD卡的问题。这是我正在使用的代码
window.requestFileSystem(2, 0, function(file_system) {
console.log('got fs');
callback(null, file_system);
}, function(err) {
console.log('not getting library fs'+err.code);
callback(err);
});
我如何在android中使用它?
答案 0 :(得分:0)
根据官方文件,requestFileSystem
中的第一个参数应为常量LocalFileSystem.PERSISTENT
或LocalFileSystem.TEMPORARY
尝试以下标准声明:
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(f){ /* sucess */ }, function(e){ /* error */);