本帖最后由 Ellia.Duan 于 2024-7-9 09:26 编辑
您好,您是要点击“导出”按钮后将此行的content对象导出为Excel文件?
如果是的话,你可以参考下面的链接
https://demo.grapecity.com.cn/sp ... A%E6%8C%87%E5%8D%97
根据您的版本,选择对应的方式。
如果用excelIO ,可以直接对json导出,如
- excelIo.save(json, function (blob) {
- saveAs(blob, fileName);
- }, function (error) {
- console.log(error);
- });
复制代码
如果是sheetIO ,需要将json转换为spread对象
- let spread = new GC.Spread.Sheets.Workbook()
- spread.fromJSON(json)
复制代码
然后对spread对象进行导出
- spread.export(function (blob) {
- // save blob to a file
- saveAs(blob, fileName);
- }, function (e) {
- console.log(e);
- }, {
- fileType: GC.Spread.Sheets.FileType.excel,
- includeBindingSource: true
- });
复制代码
|