Json转Excel

图片还没有哦

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//安装json2excel模块:npm install json2excel
var jexcel = require('json2excel'); //导入模块

var data = {
sheets: [{
header: { //标头
'author': 'authorName',
'title': 'title',
'aa':'备注',
},
items: [ //行 内容
{
author:'john',
title:'how to use this',
aa:'cc',
},
{
author:'Bob',
title: 'so Easy',
aa:'dd'
},

],
sheetName: 'sheet1', //表名
}],
filepath: 'j2x.xlsx' //文件名
}

jexcel.j2e(data,function(err){
console.log('finish') //完成打印
});

参考

本文标题:Json转Excel

文章作者:游戏人生

发布时间:2019年05月09日 - 17:05

最后更新:2020年12月27日 - 12:12

原始链接:http://www.tjl-myblog.cn/Json转Excel.html

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------本文结束感谢您的阅读-------------