Excel 加载项在读取自定义属性时崩溃

问题描述 投票:0回答:0

我正在使用 React JS 开发 Excel 加载项,我正在获取自定义属性,我的桌面 Excel 应用程序在加载加载项时崩溃。但它在 Microsoft365 Excel 在线运行良好。

在下面的代码中加载自定义属性时基本上会崩溃。

var customProperty = context.workbook.properties.custom;
var customPropertyCount = customProperty.getCount();
customProperty.load();
await context.sync();

它在“customProperty.load()”上崩溃。我做了很多工作,但找不到任何修复方法。

javascript reactjs properties excel-addins
© www.soinside.com 2019 - 2024. All rights reserved.