问题1:在拿到excelIO.open加载一个文件以后,能不能获取到所有公式的个数,如果不能如何解决表格多公式1000个以上的性能问题。
excelIO.open(
file.buffer,
(spreadJson) => {
spread.fromJSON(spreadJson,{
doNotRecalculateAfterLoad:true
});
const json = spread.toJSON()
// todo
},
function (error) {
console.log('解析Excel失败=====>', error)
},
{
password: '',
importPictureAsFloatingObject: true
}
);
|