I am working on an angular js application and I am stuck in a situation where I have to export data to Xls using angular js. I searched a lot on the Internet for export functions or any library for angular js, so I can do this or at least get an idea of ββhow to export. I have no code or work to show here.
I need some suggestions. Please help me with this.
Thanks in advance.
Update:
I have data that is an array of objects, and I repeat this in the user interface in a table. My backend is node.js and frontend angular js.
My problem is that if we have data from the server and I use in the user interface, how can I use the same data to export to Xls using angular js. I do not want to call the backend again to extract the data and export it.
In the existing table, the user can select the checkbox (any number of rows or all rows) to retrieve data in Xls.
In node.js, I used the node module, whose name is Excel, and it is available on the nodemodules website.
My data is as follows:
"data": [ { "Name": "ANC101", "Date": "10/02/2014", "Terms": ["samsung", "nokia": "apple"] },{ "Name": "ABC102", "Date": "10/02/2014", "Terms": ["motrolla", "nokia": "iPhone"] } ]
I want a solution using angular or any library of angles.
javascript angularjs excel xls
w3uiguru Feb 10 '14 at 15:10 2014-02-10 15:10
source share