我正在Outlook Web加载项中实现可固定的任务窗格 这是我的代码:
Office.initialize = function (reason) {
$(document).ready(function () {
// Listen to ItemChanged event
Office.context.mailbox.addHandlerAsync(Office.EventType.ItemChanged, itemChanged, function (result) {
console.log(result)
if (result.status === Office.AsyncResultStatus.Failed) {
// here will be hit if I do a postback in the server, could also be replicated by choosing "reload frame" in the right click menu
{name: "Internal Error", message: "An internal error has occurred.", code: 5001}
}
});
gatherMailItemInfo();
});
}
一切正常(gatherMailItemInfo
可以在项目之间进行切换。但是只要post
到服务器即可(可以通过在右键菜单中选择“重新加载框架”来复制) )处理程序将失败。
我正在使用Office 365进行测试。 Windows桌面客户端没有此类问题。