Office Addin:在已保存的事件上加载自定义属性

时间:2017-06-15 11:17:15

标签: outlook office-js office-addins

我目前正在为Outlook添加插件,我必须设置和读取事件中的自定义属性。 它非常适合设置和读取未保存事件的自定义属性(当我创建它时),但是,一旦事件被保存并且我尝试读取自定义属性,我就会收到此错误:

{
"error": {
    "code": 9020,
    "message": "Une erreur interne s’est produite.",
    "name": "GenericResponseError"
},
"status": "failed",
"value": null
}

这是我的代码:

Office.context.mailbox.item.loadCustomPropertiesAsync(function (_customPropsResult) {
if (_customPropsResult.status === Office.AsyncResultStatus.Failed) {
    // Deal with the error
    // my error is here
}

let customProps = _customPropsResult.value;
let myValue = customProps.get('myPropertyName');
})

有什么想法吗?

由于

0 个答案:

没有答案