file-saver-angular
v0.0.6
Published
This library is used to export data to csv/excel
Downloads
204
Maintainers
Readme
Documentation
This library is used to export data to csv/excel
Installation
npm install file-saver-angular
import FileSaverAngularService in your component and add this service in providers
providers: [FileSaverAngularService]
create service object
constructor(private fileSaverServiceObj: FileSaverAngularService) { }
How to export data in csv. use exportToCsv() method using service object like this
this.fileSaverServiceObj.exportToCsv(
[
{
Language: 'Python',
Framework: 'Django'
}, {
Language: 'PHP',
Framework: 'Laravel'
}
], 'test.csv'
);
How to export data in excel. use exportToExcel() method using service object like this
this.fileSaverServiceObj.exportToExcel(
[
{
Language: 'Python',
Framework: 'Django'
}, {
Language: 'PHP',
Framework: 'Laravel'
}
], 'test.xls'
);
1. first parameter is a data array
2. second parameter is a file name