本帖最后由 低调的繁华 于 2024-7-4 16:48 编辑
你好 请问后端有类似于前端export中导出忽略公式的api吗,类似:
this.workbook.export(
(blob: any) => {
saveAs(blob, fileName + '.xlsx')
},
() => {},
{
fileType: GC.Spread.Sheets.FileType.excel,
includeBindingSource: true,
includeStyles: true,
includeFormulas: false
}
)
中的 includeFormulas: false
之前版本ssjson使用的是ignoreFormula
|