PhoneGap 3.3.0 - 获取错误代码1" FILE_NOT_FOUND_ERR"将文件下载到移动设备时

时间:2014-11-09 13:21:30

标签: android ios cordova windows-phone-8 download

我正在使用一个使用Phonegap版本3.3.0的旧Phonegap项目。我正在尝试将文件下载到我的移动设备。但是,我收到错误代码1" FILE_NOT_FOUND_ERR"。

我检查了几次,文件路径绝对正确,可以下载。所以,它不是源文件的问题。但是,现在,我怀疑它是否可能是导致此问题的目标路径。我已将目的地设置为" cdvfile:// localhost / persistent /"。

requestFileSystem(LocalFileSystem.PERSISTENT, 0, function onFileSystemSuccess(fileSystem) {
var fileTransfer = new FileTransfer();
            fileTransfer.download("https://ssl.gstatic.com/accounts/ui/logo_2x.png", "cdvfile://localhost/persistent/test.png", function (theFile) {
//success
}, function (error) {
//ERROR - CURRENTLY THE CODE HERE IS EXECUTED
});
}, function fail(evt) {
//COULD NOT GET THE FILESYSTEM
});

0 个答案:

没有答案