我正在尝试使用javascript api为单词2016编写一个加载项。加载项应该有一个插入表的按钮,但我无法让它工作。
Word.run(function (context) {
// Create a proxy object for the document body.
var body = context.document.body;
body.insertTable(2, 2, Word.InsertLocation.end, [["a", "b"], ["c", "d"]]);
// Synchronize the document state by executing the queued commands, and return a promise to indicate task completion.
return context.sync();
}).catch(function (e) {
console.log(e.message);
})
这是我必须测试它的方法。每当我激活它,它会导致word暂停一段时间然后什么都不做。我也已经确定问题与运行该方法的按钮无关。如果有人知道为什么或如何修复它我会非常感激提前谢谢。
答案 0 :(得分:0)
我发现问题是因为我使用的单词的构建版本不支持可插入方法,所以更新单词是解决问题的方法