从FTP

时间:2015-11-27 10:13:59

标签: javascript angularjs cordova ionic-framework ngcordova

我正在尝试使用Cordova从FTP服务器下载文件。我安装了ngCordova和Filetransfer插件。以下是我的代码:

angular.module('TestApp', ['ionic', 'TestApp.controllers', 'charts.ng.justgage', 'pascalprecht.translate', 'ngCookies', 'ngCordova'])
var app = angular.module('TestApp.controllers', [])

app.controller('FileDownloadCtrl', function($scope, $timeout, $cordovaFileTransfer) {
$scope.downloadFile = function() {
    var url = "ftp://URL/somefile.xml";
    var filename = url.split("/").pop();
    alert(filename);
    var targetPath = cordova.file.externalRootDirectory + filename;
    var trustHosts = true;

    var options = new Object();
    var headers = { 'Authorization': 'Basic Login_cred' };
    options.headers = headers;

    alert(cordova.file.externalRootDirectory);
    alert(options.headers);
    $cordovaFileTransfer.download(url, targetPath, options, trustHosts)
      .then(function(result) {
          // Success!
          alert(JSON.stringify(result));
      }, function(error) {
          // Error
          alert(JSON.stringify(error));
      }, function (progress) {
          $timeout(function () {
              $scope.downloadProgress = (progress.loaded / progress.total) * 100;
          })
      });
}
});

Angular.module位于实际代码中的不同JS文件中

此代码返回以下警告:

  • somefile.xml
  • 文件://存储/模拟/ 0 /
  • [object Object]
  • {"代码":2"源&#34 ;: ftp://URL/somefile.xml""目标":文件:///存储/模拟/ 0 / somefile.xml"," http_status":null," body":null," exception":null}

我尝试从托管在ftp(http://website/somefile.xml)上的网站下载文件,该文件运行得很好。我很确定我的标题做错了。我也尝试将Login_creds放入目标网址,如下所示:ftp://username:password@URL/somefile.xml,这不起作用,但可能是浏览器特定的。

1 个答案:

答案 0 :(得分:0)

当我切换到密码保护的http解决方案时,

ngCordova文件传输不能与ftp:// URL一起使用。