我有一个包含一些行和6列的Excel文件,并希望在名为“Result”的第7个位置添加一个新列。我正在使用Protractor和Node.js.Could有人帮我提供代码吗?
答案 0 :(得分:1)
2.我的解决方法是:
a)Read the excel file and convert to JSON.
b)Add the new row(json) into that JSON.
c)delete the old excel file.
d)Recreate a excel file and write once again..
编辑:
1.xlsx-to-json NPM look into this how to convert xlsx to json..
2.xlsx-writestream NPM to write into xlsx.
通过以上内容,你会得到一个想法..