我在android中使用window.requestFileSystem。但它失败并出现错误代码 9。我在这里阅读了没有 SD 卡的 android 设备的问题。这是我正在使用的代码
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中使用它?