我目前正在为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');
})
有什么想法吗?
由于