我有一个Outlook加载项,尝试使用loadCustomPropertiesAsync [1]来获取与邮件项一起存储的自定义属性:
Office.context.mailbox.item.loadCustomPropertiesAsync(function(asyncResult){
var customProps = asyncResult.value;
console.log(customProps.get("some.prop"));
})
当我从Android版Outlook(v3.0.40)应用程序访问外接程序时,上面的代码片段似乎超时,但是在iOS,Firefox和Chrome上运行良好(在Windows 10和Mac上都经过测试)。 / p>
这是一个错误吗?