用NODEJS处理EXCEL文件导入导出

Posted OkidoGreen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用NODEJS处理EXCEL文件导入导出相关的知识,希望对你有一定的参考价值。

参考文章

http://librajt.github.io/2013/08/04/handle-excel-file-with-nodejs/


对比了 ExcelJS , https://github.com/guyonroche/exceljs#create-a-workbook

node-xlsx ,https://github.com/mgcrea/node-xlsx

等 nodejs 等现有组件,决定使用node-xlsx。


node-xlsx 基于现有前端强大组件 js-xlsx,  https://github.com/SheetJS/js-xlsx

使用例子:

var express = require('express');
var router = express.Router();
var xlsx = require('node-xlsx');
var fs = require('fs');

/* GET import excel test. */
router.get('/importExcel', function(req, res, next) 
 var filename='./public/test.xlsx';
 console.error(filename);
 // read from a file
var obj = xlsx.parse(filename);
console.log(JSON.stringify(obj));
 
res.send('import successfully!');
);
/* GET export excel test. */
router.get('/exportExcel', function(req, res, next) 
// write
var data = [[1,2,3],[true, false, null, 'sheetjs'],['foo','bar',new Date('2014-02-19T14:30Z'), '0.3'], ['baz', null, 'qux']];
var buffer = xlsx.build([name: "mySheetName", data: data]);
fs.writeFileSync('b.xlsx', buffer, 'binary');
res.send('export successfully!');

);


补充:

文件上传操作可以选择以下两种

fs                           https://github.com/jprichardson/node-fs-extra

formidable   https://github.com/felixge/node-formidable

以上是关于用NODEJS处理EXCEL文件导入导出的主要内容,如果未能解决你的问题,请参考以下文章

nodejs-xlsx导出的excel,office打开提示“发现不可读取的内容”?

使用nodejs处理Excel文件

nodejs写excel

django导出excel文件的内容为啥是空的

js批量下载excel文件

请教如何用JQuery导入导出excel表格