为了账号安全,请及时绑定邮箱和手机立即绑定

vue做一个导出excel功能,可导出的身份证号带E?

vue做一个导出excel功能,可导出的身份证号带E?

尚方宝剑之说 2019-01-28 17:32:00
导出是用xlsx插件实现的,可导出后的excel显示的数据格式不对代码://导出当前表格exportCurrent:function(){    var wb = XLSX.utils.table_to_book(document.querySelector('#out-table')) //表格id     var wbout = XLSX.write(wb, { bookType: 'xlsx', bookSST: true, type: 'array' })    try {         FileSaver.saveAs(new Blob([wbout], { type: 'application/octet-stream' }), 'sheet.xlsx')  //文件名     } catch (e) { if (typeof console !== 'undefined') console.log(e, wbout) }    return wbout },这个该怎么解决呀 找相关文档也找不到 好心酸~~
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 736 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信