使用Node.js写入excel文件单元格

时间:2016-06-20 11:01:53

标签: javascript node.js protractor

我有一个包含一些行和6列的Excel文件,并希望在名为“Result”的第7个位置添加一个新列。我正在使用Protractor和Node.js.Could有人帮我提供代码吗?

1 个答案:

答案 0 :(得分:1)

  1. 支持已经存在的NPM将数据附加到现有文件。
  2. 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.
    

    通过以上内容,你会得到一个想法..