您好,这边调研后,对于这部分代码存在一些疑惑,请问咱们的真实用例或者是场景是什么呢?麻烦您详细描述一下为何需要以下面的方式进行导出。这样会对调研此问题有更准确的理解。
- $('#saveExcel').click(function () {
- const newWorkbook = new GC.Spread.Sheets.Workbook(
- document.createElement('div')
- )
- newWorkbook.fromJSON(spread.toJSON(), {
- doNotRecalculateAfterLoad: true,
- })
- excelIo.save(
- JSON.stringify(newWorkbook.toJSON()),
- function (blob) {
- saveAs(blob, 'export.xlsx')
- },
- console.error
- )
- })
复制代码 |