我看到了有关custom properties的MS Office js api 1.3文档。
但是我无法通过office js从单词设置中读取任何自定义属性项。

       `Word.run(function (context) {

            // Create a proxy object for the document.
            var thisDocument = context.document;

            var customProperties = thisDocument.properties.customProperties;

            context.load(customProperties);

            return context.sync().then(function () {
                var getcount = customProperties.getCount();


                console.log(customProperties.items);
                return context.sync().then(function () {
                    console.log(getcount.value);
                });
            });
        })`


customProperties.items始终返回空数组。我也找不到set中的customProperties方法
我的自定义属性显示在此(https://i.stack.imgur.com/AywDo.png)中。

MS Office js API是否还不支持访问Word中的自定义属性?

最佳答案

CallOfDuty:我认为发生的事情是您没有Office Client的更新版本(您需要16 / 0.7766 +)。我在最近的版本中运行了您的代码,并且使用与您完全相同的代码来获取自定义属性。因此,请确保您正在进行全新更新here are some instructions on how to do it

顺便说一句,我刚刚得到了代码的简化版本。希望这可以帮助!



function getProperties() {
    Word.run(function (context) {
        var customDocProps = context.document.properties.customProperties;
        context.load(customDocProps);
        return context.sync()
            .then(function () {
                console.log(customDocProps.items.length);
             })
     })
}

10-04 22:09