答案 0 :(得分:1)
以下代码段获取文档的作者和标题,并将这些属性值写入控制台。
Word.run(function (context) {
var document = context.document;
document.properties.load("author, title");
return context.sync()
.then(function () {
console.log("The author of this document is " + document.properties.author + " and the title is '" + document.properties.title + "'");
});
});
}
请注意,使用Office.js API,您必须在对象上调用load()
方法,以便在您能够读取之前显式加载属性值。 (您可以在same article you linked to in your question中找到有关load()
方法的信息。)