美文网首页
前端表格导出转化excel

前端表格导出转化excel

作者: 疯泽清 | 来源:发表于2021-08-10 18:09 被阅读0次

    var xlsxParam = { raw: true }; //转换成excel时,使用原始数据
    var wb = XLSX.utils.table_to_book(
    document.querySelector("#outTable"),
    xlsxParam
    );
    var wbout = XLSX.write(wb, {
    bookType: "xlsx",
    bookSST: true,
    type: "array",
    });
    try {
    FileSaver.saveAs(
    new Blob([wbout], { type: "application/octet-stream;charset=utf-8" }),
    "职代会管理.xlsx"
    );
    } catch (e) {
    if (typeof console !== "undefined") console.log(e, wbout);
    }
    return wbout;

    相关文章

      网友评论

          本文标题:前端表格导出转化excel

          本文链接:https://www.haomeiwen.com/subject/merfbltx.html