用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!');

});

 

扫描二维码关注公众号,回复: 5145822 查看本文章

 

补充:

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

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

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

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

猜你喜欢

转载自www.cnblogs.com/skinchqqhah/p/10350718.html