1.安装

sudo cnpm i js-export-excel

1
2.使用

    //导入ExportJsonExcel包
  const ExportJsonExcel = require('js-export-excel')

  //表头1
  const columns1 = [
    { title: '基础区域', dataIndex: '基础区域' },
    { title: '所属楼层', dataIndex: '所属楼层' },
    { title: '名称', dataIndex: '名称' },
    { title: '构件', dataIndex: '构件' }
  ]

  let option = {}
  //文件名字
  option.fileName = '泰和安全设备对应表'
  //文件内容
  option.datas = [
    {
      //json数据
      sheetData: json,
      //表1名字
      sheetName: '摄像头',
      //表格内容
      sheetFilter: columns1.map(v => v.dataIndex),
      //表头
      sheetHeader: columns1.map(v => v.title)
    }
  ]
  const toExcel = new ExportJsonExcel(option)
  toExcel.saveExcel()

早饭君
150 声望5 粉丝