1金币
本帖最后由 shiguang 于 2021-2-23 16:00 编辑
调用代码:
var json = spread.toJSON({includeBindingSource: true});
console.log(json);
// here is excel IO API
excelIo.save(json, function (blob) {
console.log('--blob--');
console.log(blob);
saveAs(blob, filename+ '.xlsx');
}, function (e) {
// process error
console.log(e);
}, {password: null});
产生的excel文件打开时报错,样式不对。
|
最佳答案
查看完整内容
您可以参考这个demo
————————————
此问题已在14.0.8中修复,建议您升级至此版本。
|