fileSystem不像以前那样工作

时间:2014-03-14 14:09:49

标签: android ios mobile cordova

我使用下面的代码来获取下载的路径,但是一旦格式化并安装了cordova的mac版本3.3.0rc1,代码就无法正常工作。

function onSuccess(fileSystem) {
    console.log(fileSystem.root.fullPath);
}

// request the persistent file system
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, null);

之前,代码返回的内容如下:

/Users/myuser/Library/Application Support/iPhone Simulator/5.0/Applications/CF2A9018-49B9-4DE6-91FC-EA76CB435FC8/Document

现在,代码仅返回:

"/"

我不能那样下载

科尔多瓦的任何变化?我应该用什么代码下载?

我尝过几次但没有成功。

感谢所有人。

0 个答案:

没有答案