window.requestFileSystem在android phonegap中失败

时间:2013-10-02 00:39:23

标签: javascript android cordova

我在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中使用它?

1 个答案:

答案 0 :(得分:0)

根据官方文件,requestFileSystem中的第一个参数应为常量LocalFileSystem.PERSISTENTLocalFileSystem.TEMPORARY

尝试以下标准声明:

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(f){ /* sucess */ }, function(e){ /* error */);