20金币
您好,最近遇到通过excel文件,反序列化导到程序中,反序列化时间很长,有时候需要一分多钟。
excelIo.open(fileLst, (spreadJSON) => {
_this.spread.suspendPaint();
_this.spread.fromJSON(spreadJSON, { doNotRecalculateAfterLoad: true });
_this.spread.resumePaint();
})
大致代码如上,其中fromJSON 的时间有时候需要一分多钟
附件是文件以及ssjson
问下是什么问题导致反序列化时间长的呢?
|
最佳答案
查看完整内容
你好,把这个两个属性加上,并且使用14.2.3之后加载就是毫秒级别的了
|