在文档正文中使用Office.js插入表格时如何添加邮件合并字段。
对于创建表,下面的代码可以工作,但是我想在创建表时插入合并字段。
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);
})