如何将文件下载到cordova的下载文件夹中

时间:2016-02-19 19:59:55

标签: cordova download phonegap-plugins visual-studio-cordova

我正在开发VS2015 Apache cordova应用程序,我想将文件从远程服务器保存到下载文件夹中。我将文件和文件传输插件添加到我的项目中。这是我的代码:

$("#SaveFiles").click(function () {
var _fileTransfer = new FileTransfer();                     
var filePath = cordova.file.dataDirectory + "/Download-Button1.png";
 var uri = encodeURI("http://www.techaudible.org/wp-content/uploads/2014/05/Download-Button1.png");
        _fileTransfer.download(
     uri,
     filePath,
     function (entry) {
         alert("download complete: " + entry.toURL());
     },
     function (error) {
         alert(error);
         alert("download error source " + error.source);
         alert("download error target " + error.target);
         alert("upload error code" + error.code);
     }
 );
});

当我点开此按钮时,我会收到此警报 enter image description here

但我没有在路上得到它。我不确定它是否已成功下载,但我想将其下载到移动设备的下载文件中,我试过了 如宣布的那样 How do you download a file to Android's Downloads folder using Phonegap?

但是" LocalFileSystem"在我的代码中没有定义。我不确定我是否应该导入另一个插件。 任何建议。谢谢。

0 个答案:

没有答案