在uni-app中导出excel文件

2024-09-01 14:36
文章标签 excel app 导出 uni

本文主要是介绍在uni-app中导出excel文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

1、数据构造

1.1、首行标题定义

1.2、数据行

1.3、导出

2、工具excelExport.js


 

导出原理:以html表格源码形式,在头部定义excel格式,并借助 java.io的读写文件类

1、数据构造

1.1、首行标题定义

initHeader(){this.warr = ['100px','50px','150px','200px',]this.header = [{content: '列名1',color: 'blue',type: 'text',width: this.warr[0],height: '25px',fontSize: '16px'},{content: '列名2',color: 'blue',type: 'text',width: this.warr[1],height: '25px',fontSize: '16px'}, {content: '列名4',color: 'blue',type: 'text',width: this.warr[2],height: '25px',fontSize: '16px'}, ]
}

1.2、数据行

要求传入二维数组

var listData = []
listData.push(this.header)
let data = []// 遍历有序列表
let li = null;
for(var i=0; i < list.length; i++){let res = dict[list[i]];data = [];tempArr = []//color: 'blue',type: 'text',width: '200px',height: '25px',fontSize: '16px'})data.push({content: res.clanNo , type: 'text',width: this.warr[0]})data.push({content: res.storeroom , type: 'text',width: this.warr[1]})data.push({content: this.buildBoxNo(res), type: 'text',width: this.warr[2]})listData.push(data)
}

1.3、导出

import {doExport} from '@/common/exportExcel.js'doExport(filename, listData, function(res){uni.showToast({duration: 2000,title: "成功导出" + (listData.length -1 ) +"条"})
})

2、工具excelExport.js

文件最终存储在手机磁盘根路径下,名为rootpath的文件夹内

startXlsContent 函数提供了文件头部申明内容

formatTable 函数则是将数据列表转为table.tr元素,并使用java.io.FileWriter写入文件内容

let imgCount = 1;//图片计数器/*** 导出Excel* @param {Object} fileName 文件名 会自动拼接时间戳防止重名* @param {Object} data 数据内容 格式说明见下* @param {Object} callback 导出成功的回调方法 返回文件保存路径* * 二维数组 其中外层数组中的每个元素为数组 对应一行    内层数组中的每个元素为object对象 对应每个单元格 属性如下:* type 类型 text为文字 img为图片 默认文字* width 单元格宽度 请带单位 默认300px* height 单元格高度 请带单位 默认25px* color 文字颜色 默认黑色* fontSize 字号 请带单位 默认16px* textAlign 文字对齐方式 默认left* imgWidth 仅type为img时需要 图片宽度 无需带单位 默认25* imgHeight 仅type为img时需要 图片高度 无需带单位 默认25* content 单元格内容 type为img时为图片路径 仅支持base64* colspan 跨列 默认1* rowspan 跨行 默认1* * 示例:* [[{content: '姓名',color: 'blue',type: 'text',width: '200px',height: '25px',fontSize: '16px'}, {content: '性别',color: 'blue',type: 'text',width: '200px',height: '25px',fontSize: '16px'}, {content: '头像',color: 'blue',type: 'text',width: '200px',height: '25px',fontSize: '16px'}],[{content: '张三',color: 'blue',type: 'text',width: '200px',height: '25px',fontSize: '16px',colspan: 2,rowspan:2}, {content: 'base64图片',type: 'img',width: '200px',height: '25px',imgWidth: 25,imgHeight: 25}],[{content: '123',color: 'blue',type: 'text',width: '200px',height: '25px',fontSize: '16px'}]
]*/
let doExport = function (fileName,data,callback){imgCount = 1;let date = new Date();let year = date.getFullYear();let month = date.getMonth() + 1;let day = date.getDate();let hour = date.getHours();let minute = date.getMinutes();let second = date.getSeconds();if(month < 10){month = '0' + month;}if(day < 10){day = '0' + day;}if(hour < 10){hour = '0' + hour;}if(minute < 10){minute = '0' + minute;}if(second < 10){second = '0' + second;}let name = fileName || '导出的Excel';let reg = /\\|\//g;name = name.replace(reg,'|');name = name + '-' + year + month + day + hour + minute + second;console.log(name)uni.showLoading({title: '正在导出',mask: true});formatTable(name,data,callback);
}async function formatTable(documentName,data,callback){//native.js创建文件及删除文件let dir = '/rootpath';let environment = plus.android.importClass("android.os.Environment");var sdRoot = environment.getExternalStorageDirectory(); //文件夹根目录console.log(sdRoot); var File = plus.android.importClass("java.io.File");var BufferedReader = plus.android.importClass("java.io.BufferedReader");var FileReader = plus.android.importClass("java.io.FileReader");var FileWriter = plus.android.importClass("java.io.FileWriter");try {//不加根目录创建文件(即用相对地址)的话directory.exists()这个判断一值都是falselet current = sdRoot + dir;console.log(current)let directory = new File(current);if (!directory.exists()) {console.log('创建目录')directory.mkdirs(); //创建目录}if (!directory.exists()) {console.log('创建目录失败')} else {console.log('创建目录成功')}// 文件路径,注意和文件夹保持一致,从根目录开始let pathUrl = current + '/' + documentName + '.xls' console.log(pathUrl)let file = new File(pathUrl);console.log(file.exists())if (!file.exists()) {file.createNewFile(); //创建文件}let fos = new FileWriter(pathUrl, true);fos.write(startXlsContent());fos.write(`<table>`);let index = 0;for (let item of data) {let tr = '';tr += `<tr>`;for (let i of item) {let width = i.width || '300px';let height = i.height || '25px';let color = i.color || 'balck';let fontSize = i.fontSize || '16px';let textAlign = i.textAlign || 'left';let colspan = i.colspan || 1;let rowspan = i.rowspan || 1;tr += `<td style="width:${width};height:${height};color:${color};font-size:${fontSize};text-align:${textAlign}" colspan="${colspan}" rowspan="${rowspan}">${i.content}</td>`;}tr += `</tr>`;index++;fos.write(tr);if(index % 2000 == 0){fos.flush();}}fos.write(`</table>`);fos.write(endXlsContent());fos.close();// 成功导出数据;setTimeout(() => {uni.hideLoading();console.log(`导出成功,文件位置:${dir}/${documentName}.xls`);callback(`${dir}/${documentName}.xls`);}, 1000);return ;} catch (e) {console.log(e);}uni.showToast({title: '导出失败,请确认是否授权文件权限10',icon: 'none'});return ;}function startXlsContent(){let excelFile = "<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'>";excelFile += '<meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8">';excelFile += '<meta http-equiv="content-type" content="application/vnd.ms-excel';excelFile += '; charset=UTF-8">';excelFile += "<head>";excelFile += "<!--[if gte mso 9]>";excelFile += "<xml>";excelFile += "<x:ExcelWorkbook>";excelFile += "<x:ExcelWorksheets>";excelFile += "<x:ExcelWorksheet>";excelFile += "<x:Name>";excelFile += "sheet";excelFile += "</x:Name>";excelFile += "<x:WorksheetOptions>";excelFile += "<x:DisplayGridlines/>";excelFile += "</x:WorksheetOptions>";excelFile += "</x:ExcelWorksheet>";excelFile += "</x:ExcelWorksheets>";excelFile += "</x:ExcelWorkbook>";excelFile += "</xml>";excelFile += "<![endif]-->";excelFile += "</head>";excelFile += "<body>" // excelFile += data + "</body></html>";return excelFile;
}function endXlsContent(){return "</body></html>";
}export {doExport 
}

 

 

这篇关于在uni-app中导出excel文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1127215

相关文章

C#关闭指定时间段的Excel进程的方法

private DateTime beforeTime;            //Excel启动之前时间          private DateTime afterTime;               //Excel启动之后时间          //举例          beforeTime = DateTime.Now;          Excel.Applicat

MySQL使用mysqldump导出数据

mysql mysqldump只导出表结构或只导出数据的实现方法 备份数据库: #mysqldump 数据库名 >数据库备份名 #mysqldump -A -u用户名 -p密码 数据库名>数据库备份名 #mysqldump -d -A --add-drop-table -uroot -p >xxx.sql 1.导出结构不导出数据 mysqldump --opt -d 数据库名 -u

一步一步将PlantUML类图导出为自定义格式的XMI文件

一步一步将PlantUML类图导出为自定义格式的XMI文件 说明: 首次发表日期:2024-09-08PlantUML官网: https://plantuml.com/zh/PlantUML命令行文档: https://plantuml.com/zh/command-line#6a26f548831e6a8cPlantUML XMI文档: https://plantuml.com/zh/xmi

excel翻译软件有哪些?如何高效提翻译?

你是否曾在面对满屏的英文Excel表格时感到头疼?项目报告、数据分析、财务报表... 当这些重要的信息被语言壁垒阻挡时,效率和理解度都会大打折扣。别担心,只需3分钟,我将带你轻松解锁excel翻译成中文的秘籍。 无论是职场新人还是老手,这一技巧都将是你的得力助手,让你在信息的海洋中畅游无阻。 方法一:使用同声传译王软件 同声传译王是一款专业的翻译软件,它支持多种语言翻译,可以excel

MFC中App,Doc,MainFrame,View各指针的互相获取

纸上得来终觉浅,为了熟悉获取方法,我建了个SDI。 首先说明这四个类的执行顺序是App->Doc->Main->View 另外添加CDialog类获得各个指针的方法。 多文档的获取有点小区别,有时间也总结一下。 //  App void CSDIApp::OnApp() {      //  App      //  Doc     CDocument *pD

终于解决了excel操作及cspreadsheet.h问题

困扰多日的excel操作问题终于解决:利用cspreadsheet.h!在vs2005下,不能直接应用cspreadsheet.h,所以必须解决些问题先。 首先, 出现暴多错误。解决UNICODE问题,全部添加L。 [1] +++++++++++++++++++ 其次, 出现问题: error   C2664:   &apos;SQLGetInstalledDriversW &apos;

关于使用cspreadsheet读写EXCEL表格数据的问题

前几天项目有读写EXCEL表格的需求,我就找了大概有几种,大致分为:COM方法、ODBC方法、OLE方法、纯底层格式分析方法。由于COM方法要求必须安装有OFFICE的EXCEL组件,纯底层格式分析方法又很多功能需要自行去完善,所有最终选择了数据库的方法,用数据库的方法去存取xls格式的数据。网上有一个高手写的CSpreedSheet,看了一下提供的接口,感觉挺好用的。在使用的过程中发现几个

Excel和Word日常使用记录:

Excel使用总结 表格颜色填充: 合并单元格: 选中你要合并的单元格区域。按下快捷键 Alt + H,然后松开这些键。再按下 M,接着按 C。这个组合键执行的操作是:Alt + H:打开“主页”选项卡。M:选择“合并单元格”选项。C:执行“合并并居中”操作。 插入行: 在Excel中,插入一行的快捷键是:Windows:选择整行(可以点击行号)。按下 Ctrl + Sh

ConstraintLayout布局里的一个属性app:layout_constraintDimensionRatio

ConstraintLayout 这是一个约束布局,可以尽可能的减少布局的嵌套。有一个属性特别好用,可以用来动态限制宽或者高app:layout_constraintDimensionRatio 关于app:layout_constraintDimensionRatio参数 app:layout_constraintDimensionRatio=“h,1:1” 表示高度height是动态变化

SpringBoot中利用EasyExcel+aop实现一个通用Excel导出功能

一、结果展示 主要功能:可以根据前端传递的参数,导出指定列、指定行 1.1 案例一 前端页面 传递参数 {"excelName": "导出用户信息1725738666946","sheetName": "导出用户信息","fieldList": [{"fieldName": "userId","fieldDesc": "用户id"},{"fieldName": "age","fieldDe