我正在使用office js。我的加载项在与 mac system office 和 office 365 一起正常工作的单元格中插入了一条评论,但我无法在 windows system office 中插入评论。Office 2016 的版本。我做错了什么?请指导我谢谢。
这是我的代码片段
await Excel.run(async (ctx) => { let wb = ctx.workbook;
await ctx.sync().then(async () => {
try {
const address="sheet!A4"
var comment = wb.comments.getItemByCell(address);
comment.delete();
wb.comments.add(address, "This is simple test comment");
} catch (error) {
if (error.code == Excel.ErrorCodes.itemNotFound) {
wb.comments.add(address, "This is simple test comment");
console.log("Add comment successfully!");
}
}
});
await ctx.sync();
});