web-dev-qa-db-fra.com

Comment créer et sauvegarder un fichier sur un système de fichiers local en utilisant AngularJS?

Je souhaite créer et enregistrer un fichier avant d’enregistrer des données. La méthode ci-dessous consiste à créer et à enregistrer des données dans un fichier. Elle est uniquement prise en charge par le navigateur Chrome. Comment puis-je créer et enregistrer un fichier vide, y connecter des données et bénéficier de la prise en charge de IE et de Chrome?

ctrl.js:

function download(text, name, type) {
    var a = document.getElementById("a");
    var file = new Blob([text], {type: type});
    a.href = URL.createObjectURL(file);
    a.download = name;
}
$scope.recordLogs = function(){
    download('file text', 'myfilename.txt', 'text/plain')
}
11
hussain

Enregistrer dans le système de fichiers

Regardez angular-file-saver

Ou utilisez le code suivant comme référence pour enregistrer un BLOB. Où l'objet blob est généré à partir d'un objet JSON. Mais une extraction dans un fichier TEXT est également possible.

    // export page definition to json file
    $scope.exportToFile = function(){
        var filename = 'filename'       
        var blob = new Blob([angular.toJson(object, true)], {type: 'text/plain'});
        if (window.navigator && window.navigator.msSaveOrOpenBlob) {
            window.navigator.msSaveOrOpenBlob(blob, filename);
        } else{
            var e = document.createEvent('MouseEvents'),
            a = document.createElement('a');
            a.download = filename;
            a.href = window.URL.createObjectURL(blob);
            a.dataset.downloadurl = ['text/json', a.download, a.href].join(':');
            e.initEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
            a.dispatchEvent(e);
            // window.URL.revokeObjectURL(a.href); // clean the url.createObjectURL resource
        }
    }

Utilisation de LocalStorage

Enregistrement sur le stockage local:

window.localStorage.setItem('key', value);

Obtenir de stockage local

window.localStorage.getItem('key');

Supprimer la clé de localStorage

window.localStorage.removeItem('key');

Ou en utilisant le module AngularJS 'ngStorage'

Compatibilité navigateur

Chrome - 4    
Firefox (Gecko) - 3.5    
Internet Explorer - 8    
Opera - 10.50    
Safari (WebKit) - 4

Voir exemple en direct (crédits de @cOlz)

https://codepen.io/gMohrin/pen/YZqgQW

15
daan.desmedt
$http({

            method : 'GET',
            url : $scope.BASEURL + 'file-download?fileType='+$scope.selectedFile,
            responseType: 'arraybuffer',
            headers : {
                'Content-Type' : 'application/json'
            }

        }).success(function(data, status, headers, config) {
            // TODO when WS success
            var file = new Blob([ data ], {
                type : 'application/json'
            });
            //trick to download store a file having its URL
            var fileURL = URL.createObjectURL(file);
            var a         = document.createElement('a');
            a.href        = fileURL; 
            a.target      = '_blank';
            a.download    = $scope.selectedFile+'.json';
            document.body.appendChild(a);
            a.click();

        }).error(function(data, status, headers, config) {

        });

En cas de succès, une partie doit ouvrir le système local, par lequel l'utilisateur peut choisir, où sauvegarder le fichier. Ici, j'ai utilisé <a>. Et je frappe un service reposant

7
Sangram Badi

Comment télécharger des fichiers localement avec AngularJS (avec DEMO)

Utilisez une balise <a> avec un attribut download:

<a download="{{files[0].name}}" xd-href="data">
  <button>Download data</button>
</a>

La directive xd-href:

app.directive("xdHref", function() {
  return function linkFn (scope, elem, attrs) {
     scope.$watch(attrs.xdHref, function(newVal) {
       newVal && elem.attr("href", newVal);
     });
  };
});

Lors du téléchargement, les navigateurs indiquent à l'utilisateur une boîte de dialogue pouvant être acceptée ou annulée. Pour plus d'informations, voir Référence MDN HTML - <a> Tag

LA DÉMO

angular.module("app",[])
.controller("myVm", function($scope, $http, $window) {
  var vm = $scope;
  var url = "//httpbin.org/post";
  var config = { headers: {"Content-Type": undefined} };

  vm.upload = function() {
    vm.spin = "Uploading...";
    $http.post(url, vm.files[0], config).
     then(function(response) {
      vm.result = "SUCCESS";
      vm.data = response.data.data;
    }).catch(function(response) {
      vm.result = "ERROR "+response.status;
    }).finally(function() {
      vm.spin = undefined
    });
  };
})
.directive("xdHref", function() {
  return function linkFn (scope, elem, attrs) {
     scope.$watch(attrs.xdHref, function(newVal) {
       newVal && elem.attr("href", newVal);
     });
  };
})
.directive("selectNgFiles", function() {
  return {
    require: "ngModel",
    link: function postLink(scope,elem,attrs,ngModel) {
      elem.on("change", function(e) {
        var files = elem[0].files;
        ngModel.$setViewValue(files);
      });
    }
  };
})
<script src="//unpkg.com/angular/angular.js"></script>
  <body ng-app="app" ng-controller="myVm">
    <h2>Upload and Download File with AngularJS</h2>
    <input type="file" select-ng-files ng-model="files">
    <br>
    <code>
    Name: {{files[0].name}}<br>
    Size: {{files[0].size}}<br>
    Type: {{files[0].type}}<br>
    Date: {{files[0].lastModifiedDate}}<br>
    </code>
    <button ng-click="upload()" ng-disabled="!files">
      Upload
    </button>
    <span ng-show="spin">{{spin}}</span>
    <span ng-show="result">{{result}}</span>
    <a download="data_{{files[0].name}}" xd-href="data">
      <button ng-disabled="!data">Download data</button>
    </a>
    
  </body>

Voir aussi ng-model pour <input type=“file”/> (avec la directive DEMO)

0
georgeawg