var item = Office.context.mailbox.item;
item.loadCustomPropertiesAsync(customPropsCallback);
function customPropsCallback(asyncResult) {
var customProps = asyncResult.value;
var myProp = customProps.get("myProp");
customProps.set("otherProp", "value");
customProps.saveAsync(saveCallback);
}
在我们使用上述 api 将属性保存在以前工作的 mac Outlook 上的 office365 插件中后,我们无法获取该属性。请注意,此问题仅发生在 Mac Outlook 上。