美文网首页
nodejs导出excel

nodejs导出excel

作者: 此昵称已被狗抢占 | 来源:发表于2019-08-09 10:15 被阅读0次
const XLSX = require('xlsx');

const json = [
  {
    date: '2019/7/1',
    time: '1:00:00',
    value: '10ppm',
  },
];

const ws = XLSX.utils.json_to_sheet(json);

const wb = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(wb, ws, 's1');
XLSX.writeFile(wb, 'data.xlsx');
00e7f3fd9abba5c01e0213f98d39101.png

相关文章

网友评论

      本文标题:nodejs导出excel

      本文链接:https://www.haomeiwen.com/subject/chdcjctx.html