【发布时间】:2018-02-21 16:31:54
【问题描述】:
我在 js 中编写了一个 Outlook 插件,现在我尝试将其自定义为移动版本(OWA 应用程序和浏览器)。
在 OWA 应用程序读取模式下 - 如果消息大于 50,000 个字符,getAsync 仅返回部分消息,而不是全部消息。 它返回类似于前 47,000 个字符的内容。 我找不到任何原因,因为在富客户端和 Outlook web 365 中,我收到了所有消息。
我使用的代码:
var item = Office.context.mailbox.item;
return new Promise(function (resolve, reject) {
item.body.getAsync(
typeOfGet,
{ asyncContext: "This is passed to the callback" },
function callback(resultbody) {
// the resultbody.value is the message but i get just part of it
}
【问题讨论】:
标签: outlook-addin office-addins outlook-web-addins