angular-file-saver icon indicating copy to clipboard operation
angular-file-saver copied to clipboard

An AngularJS service that provides cross-browser compatibility of HTML5 saveAs() - http://alferov.github.io/angular-file-saver

Results 34 angular-file-saver issues
Sort by recently updated
recently updated
newest added

Since Chrome 65 download several files with a loop launch only one download. For instance : ``` angular.forEach(items, function (item) { FileSaver.saveAs(item.data, item.name); }); ``` A workaround is to add...

Hey, How can I change the Encoding Format of the File I create with this package? ``` data = new Blob([str], { type: 'application/json;charset=ansi;' }); // Export "Download" this.FileSaver.saveAs(data, this.$scope.selectedLang[i].code...

How to download a zip file containing multiple csv files? I used http get function for this.

Hi, I have a scenario, where we need to support to download any kind of file types. By using angular-file-saver I was able to achieve this, but the downloaded file...

With avira antivirus (not avira internet protection) enabled, FileSaver not save file... after disabled all works fine. tested with last firefox,chrome,IE,edge Any ideas?

Hi, Thank you for this awesome Angular Filesaver plugin. This plugin works in almost all browsers I have tested, including iOS Chrome and Safari. However, iOS Firefox doesn't download the...

I'd like to see some form of broadcast, or perhaps callback firing depending on `FileSaver.saveAs` completion. i.e. ```javascript // with callback support. function resultFN(e) { console.log('File Saved!'); return e; }...

Was this by design? I've noticed that the usage of FileSaver.saveAs(blob, filename) where the blob does not specify a type will cause the "force" variable to render as false. This...

When I try to download images using FileSaver.SaveAs it is downloaded but cannot see image . var self = this; var url = this.getUrl(apiUrl, itemPath); var deferred = $q.defer(); self.inprocess...

Can I save a file with csv format? How?