nervgh / angular-file-upload

[ALMOST NOT MAINTAINED] Angular File Upload is a module for the AngularJS framework
MIT License
3.44k stars 1.13k forks source link

Saving a zip file to a form #860

Open DanielFrugoni opened 5 years ago

DanielFrugoni commented 5 years ago

Trying to save a zip file to a form field (pictures,zip) let reader = new FileReader(); reader.readAsDataURL(this.miArchiv); reader.onload = () => { console.log('Confi 4 x:' + reader.result); }

 Save the json with a huge data in the variable.
Since is allready zipped, just want to save the file, so I can down load it later like a picture.zip

Cant find the way...Help please !!