我试图开发一个cordova应用程序,以使用浏览器平台下载本地文件系统中的文件,但本地存储uri始终存在问题。我使用
...
// request access to file system
window.resolveLocalFileSystemURL(cordova.file.externalRootDirectory,
function onFileSystemSuccess(fileSystem) {
fileSystem.getFile(
"test.txt", {create: true, exclusive: false},
function onGetFileSuccess(fileEntry) {
...
},
function onGetFileError (error) {
}
);
},
function onFileSystemError(error) {
...
}
);
...
我也使用了--disable-web-security --allow-file-access-from-files
铬参数,但是如果我使用其他cordova.file。*值,我也会在resolveLocalFileSystemURL上收到错误消息。