我在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
}
答案 0 :(得分:0)
您可以确认您使用的是Outlook App还是移动浏览器?如果是Outlook App,Android或iOS?