You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "joanebrown (JIRA)" <ji...@apache.org> on 2016/08/04 16:12:20 UTC

[jira] [Updated] (CB-11669) $cordovaFileTransfer.download returns "null" always

     [ https://issues.apache.org/jira/browse/CB-11669?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

joanebrown updated CB-11669:
----------------------------
    Description: 
     `     var url = "http://foo.bar/img/image.png";
         var filename = url.split("/").pop();`
         var targetPath = cordova.file.externalRootDirectory + 'Pictures/' + filename;


         console.log(filename); // returns "image.png"
         console.log(targetPath); // returns "file:///storage/emulated/0/Pictures/image.png"

            $cordovaFileTransfer.download(url, targetPath, {}, true).then(function (result) {
                  console.log(JSON.stringify(result));
                  $scope.hasil = 'Save file on '+targetPath+' success!';
                  $scope.mywallpaper=targetPath;
            }, function (error) {
/* return {"code":null,"source":null,"target":null,"http_status":null,"body"
:null,"exception":null}*/
                  console.log(JSON.stringify(error));
                  $scope.hasil = 'Error Download file';
            }, function (progress) {
                  $scope.downloadProgress = (progress.loaded / progress.total) * 100;
            });



  was:
          var url = "http://foo.bar/img/image.png";
         var filename = url.split("/").pop();
         var targetPath = cordova.file.externalRootDirectory + 'Pictures/' + filename;


         console.log(filename); // returns "image.png"
         console.log(targetPath); // returns "file:///storage/emulated/0/Pictures/image.png"

            $cordovaFileTransfer.download(url, targetPath, {}, true).then(function (result) {
                  console.log(JSON.stringify(result));
                  $scope.hasil = 'Save file on '+targetPath+' success!';
                  $scope.mywallpaper=targetPath;
            }, function (error) {
/* return {"code":null,"source":null,"target":null,"http_status":null,"body"
:null,"exception":null}*/
                  console.log(JSON.stringify(error));
                  $scope.hasil = 'Error Download file';
            }, function (progress) {
                  $scope.downloadProgress = (progress.loaded / progress.total) * 100;
            });




> $cordovaFileTransfer.download returns "null" always
> ---------------------------------------------------
>
>                 Key: CB-11669
>                 URL: https://issues.apache.org/jira/browse/CB-11669
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Android
>    Affects Versions: 5.0.0
>         Environment: ionic
>            Reporter: joanebrown
>              Labels: filetransfer, ionic
>
>      `     var url = "http://foo.bar/img/image.png";
>          var filename = url.split("/").pop();`
>          var targetPath = cordova.file.externalRootDirectory + 'Pictures/' + filename;
>          console.log(filename); // returns "image.png"
>          console.log(targetPath); // returns "file:///storage/emulated/0/Pictures/image.png"
>             $cordovaFileTransfer.download(url, targetPath, {}, true).then(function (result) {
>                   console.log(JSON.stringify(result));
>                   $scope.hasil = 'Save file on '+targetPath+' success!';
>                   $scope.mywallpaper=targetPath;
>             }, function (error) {
> /* return {"code":null,"source":null,"target":null,"http_status":null,"body"
> :null,"exception":null}*/
>                   console.log(JSON.stringify(error));
>                   $scope.hasil = 'Error Download file';
>             }, function (progress) {
>                   $scope.downloadProgress = (progress.loaded / progress.total) * 100;
>             });



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org