前端直接导出excel
程序员文章站
2024-03-24 11:29:10
...
1.安装插件
yarn add xlsx file-saver
2.在导出的事件中
exportExcel(){
let et = XLSX.utils.table_to_book(
//获取table的DOM
document.getElementById("table-contents")
);
let etout = XLSX.write(et, {
bookType: "xlsx",
bookSST: true,
type: "array"
});
try {
FileSaver.saveAs(
new Blob([etout], {
type: "application/octet-stream"
}),
"XXX.xls"
);
} catch (e) {
//console.log(e, etout)
}
console.log(etout);
return etout;
}
上一篇: J2ME的写文件操作
下一篇: J2ME下载并读取服务器txt文件
推荐阅读
-
前端直接导出excel
-
导出HBase数据到Excel(Java代码) 博客分类: 大数据 hbaseexcel
-
简单的Excel导出 博客分类: study exceljava导出export
-
解决Girdviewd导出Excel的相关问题 博客分类: ASP.NET excelaspc#gridview
-
EasyPoi实现Excel导入导出
-
SpringBoot整合EasyPoi实现Excel文件的导入和导出
-
springboot整合easypoi实现excel导出下载
-
SpringBoot中使用POI,快速实现Excel导入导出
-
springboot中使用easypoi导出excel表格
-
springboot+EasyPoi 实现Excel的导入导出