3

我想使用 FileTransfer 从 Web 服务器下载文件,代码如下:

  function downloadFile(url) {
     var fileTransfer = new FileTransfer();
     var uri = encodeURI(url);
     var filepath="www/download/";

     fileTransfer.onprogress = function(progressEvent) {
        if (progressEvent.lengthComputable) {
          loadingStatus.setPercentage(progressEvent.loaded / progressEvent.total);
        } else {
          loadingStatus.increment();
        }
     };

    fileTransfer.download(
      uri,
      filePath,
      function(entry) {
        console.log("download complete: " + entry.fullPath);
      },
      function(error) {
        console.log("download error source " + error.source);
        console.log("download error target " + error.target);
        console.log("upload error code" + error.code);
      },
      false,
      {
        headers: {

        }
    }
  );
 }

当我在模拟器或真实设备中运行我的应用程序时,都会出现错误消息:Uncaught ReferenceError: FileTransfer is not defined。

我已经包含了cordova.js,这个错误的原因是什么?谢谢。

rgds布伦特

4

2 回答 2

2

该插件在浏览器中不起作用,它会抛出“未定义新文件传输”错误。使用真实设备进行测试。

于 2016-04-11T18:26:58.487 回答
1

您需要安装 phonegap 插件:

$phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file.git
$phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git

如果您已经安装,可能需要重建 phonegap 平台:

$phonegap build android
于 2014-01-13T08:06:42.160 回答