导出是用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
提交
取消