Convert Excel to JSON using Angularjs

I am trying to have a user upload an excel file from their computer then convert it to JSON. I am needing these files as JSON. I have it so they can upload a csv to JSON. Now I am wanting excel to JSON. Any advice or guidance on this would be appreciated. This needs to be done using angularJS. Thanks!


Forget about file manipulation using AngulaJS. Angular is a front-end JS framework with no file manipulation support whatsoever. You need to have access to server where the file is stored and you will only get it with server side language.

EDIT:

Ok, I have learnt that you can use FileReader API or $parse Angular service to read file contents on the front-end, which is really cool.

Option A: Read this StackOverflow question and answer and follow the plnkr to see an example of FileReader API being used with Angular. Kudos to @MajoB for providing an excellent answer and code sample.

Option B: Check official Angular documentation to read about $parse service and check this fiddle to see it in action.

Unfortunately neither FileReader API nor $parse service can read Excel files. They can read .txt , .csv , .json , and even .html but not .xlsx


Example code :

http://jsfiddle.net/d2atnbrt/3/

External library:

https://github.com/SheetJS/js-xls
链接地址: http://www.djcxy.com/p/83750.html

上一篇: 带有cbind的自动列前缀和只有一列

下一篇: 使用Angularjs将Excel转换为JSON