第一中形式的导出:主要是表头对应主体数据,json形式的导出 js库文件名称 : table2excel.js这个js库文件是网上找的,并且自己根据自己业务需求把内容改了一下复制到 table2excel.js 文件中,作为自己的js库,就可以使用.记得先引入jq的库 /* * jQuery table2excel - v1.1.1 * jQuery plugin to export an .xls file in browser from an HTML table * https://git
话不多说,上代码: try { let reader = new FileReader(); let blob = new Blob([res.data], { type: 'application/octet-stream;charset=UTF-8' }); reader.readAsArrayBuffer(blob); reader.onload = function() { let data = new Blob([this.result]); // 判断是否为文件流数据 if (dat