有人可以提供一个在Office.js中获取DocumentProperties的简单示例吗?

时间:2017-09-26 15:34:21

标签: ms-word office-js

如何使用Office.js(1.3)获取Word文档的作者或标题?

我阅读了documentProperties上的文档,但我需要一个示例来使语法正确。

帮助表示感谢!

1 个答案:

答案 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()方法的信息。)