码迷,mamicode.com
首页 > Web开发 > 详细

用NODEJS处理EXCEL文件导入导出

时间:2015-06-05 17:42:45      阅读:638      评论:0      收藏:0      [点我收藏+]

标签:nodejs   excel   导入导出   node-xlsx   


参考文章

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   excel   导入导出   node-xlsx   

原文地址:http://blog.csdn.net/jiangkai528/article/details/46377299

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!