翼度科技»论坛 编程开发 JavaScript 查看内容

JS table下载

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
时间紧任务重推荐第一种,直接把表格整个拿过来;第二种根据表格的配置和数据进行设置
1、html下载,原生JS
  1. downTable(name) {
  2.         const uri = 'data:application/vnd.ms-excel;base64,',
  3.             template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head></head><body><table>{table}</table></body></html>',
  4.             base64 = function (s) {
  5.                 return window.btoa(unescape(encodeURIComponent(s)))
  6.             },
  7.             format = function (s, c) {
  8.                 return s.replace(/{(\w+)}/g,
  9.                     function (m, p) {
  10.                         return c[p];
  11.                     })
  12.             }
  13.       //el-table表格设置列浮动,会多出一个隐藏table,需要过滤掉
  14.         const table = document.getElementById('table')?.innerHTML.replace(/[\s\S]*?<\/div>/img, "");
  15.         const ctx = {worksheet: name || 'Worksheet', table}
  16.         // 通过创建a标签实现
  17.         const link = document.createElement("a");
  18.         link.href = uri + base64(format(template, ctx));
  19.         // 对下载的文件命名
  20.         link.download = name + '.xlsx';
  21.         link.click();
  22.     }
复制代码
 
 优点:快
缺点:时间会被转义,样式会受页面CSS影响
2、XLSX
  1. async downTable(type: number) {
  2.         let tableColumn: any[] = [], tableData: any[] = [], fileName = '';
  3.         if (type === 1) {
  4.             tableColumn = this.trendSaleColumn;
  5.             tableData = this.trendSaleData;
  6.             fileName = '售前介入趋势(销售).xlsx';
  7.         }else if (type === 3) {
  8.             await this.getPreSalesConvertInfo(this.transferSaleType, 1);
  9.             tableColumn = this.transferSaleColumn;
  10.             tableData = this.transferSaleData;
  11.             fileName = '售前部门转化(销售).xlsx';
  12.         }
  13.         let data: any[] = [[]];
  14.         tableColumn.forEach((item: any) => {
  15.             data[0].push(item.label);
  16.         })
  17.         tableData.forEach((item: any) => {
  18.             let row: any[] = [];
  19.             tableColumn.forEach((column: any) => {
  20.                 row.push(item[column.prop]);
  21.             })
  22.             data.push(row);
  23.         })
  24.         const sheet = XLSX.utils.aoa_to_sheet(data);<br>      //合并单元格配置,需要计算需要合并的行列数
  25.         if (type === 3 || type === 4) {
  26.             if (this.productType[1] > 0 && this.productType[2] > 0) {
  27.                 sheet['!merges'] = [
  28.                     {s: {r: 1, c: 0}, e: {r: this.productType[1], c: 0}},//s表示开始,e表示结束,r表示行,c表示列;
  29.                     {s: {r: this.productType[1] + 1, c: 0}, e: {r: this.productType[2], c: 0}}
  30.                 ];
  31.             } else if (this.productType[1] > 0 || this.productType[2] > 0) {
  32.                 sheet['!merges'] = [
  33.                     {s: {r: 1, c: 0}, e: {r: this.productType[1] || this.productType[2], c: 0}},//s表示开始,e表示结束,r表示行,c表示列;
  34.                 ];
  35.             }
  36.         }
  37.         // 通过创建a标签实现
  38.         const link = document.createElement("a");
  39.         link.href = URL.createObjectURL(sheet2blob(sheet));
  40.         // 对下载的文件命名
  41.         link.download = fileName;
  42.         link.click();
  43.     }
复制代码
  1. sheet2blob(sheet: any, sheetName: string = 'sheet1') {
  2.         const workbook: any = {
  3.             SheetNames: [sheetName],
  4.             Sheets: {}
  5.         };
  6.         workbook.Sheets[sheetName] = sheet;
  7.         // 生成excel的配置项
  8.         const wopts: any = {
  9.             bookType: 'xlsx', // 要生成的文件类型
  10.             bookSST: false, // 是否生成Shared String Table,官方解释是,如果开启生成速度会下降,但在低版本IOS设备上有更好的兼容性
  11.             type: 'binary'
  12.         };
  13.         const wbout = XLSX.write(workbook, wopts);
  14.         const blob = new Blob([s2ab(wbout)], {type: "application/octet-stream"});
  15.         // 字符串转ArrayBuffer
  16.         function s2ab(s: any) {
  17.             const buf = new ArrayBuffer(s.length);
  18.             const view = new Uint8Array(buf);
  19.             for (let i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xFF;
  20.             return buf;
  21.         }
  22.         return blob;
  23.     }
复制代码

 
 优点:单元格内容可控,可以设置单元合并等XLSX支持的配置
缺点:复杂表格需要计算合并单元格的位置和数量,比如多级表头
 

来源:https://www.cnblogs.com/gxp69/p/17123638.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具