OSF.DDA.Office.context.mailbox.item.body.getAsync()上的错误9020

问题描述 投票:0回答:1

几天以来,我们在调用Office.context.mailbox.item.body.getAsync时收到错误响应9020。该代码过去可以完美地工作。微软有问题吗?

getMessageBody() {
  // call the async function to get the body 
  Office.context.mailbox.item.body.getAsync(Office.CoercionType.Text,{},
      (result) => {

         this.entityAnalyzeData.EntityItem.Properties.ContactProperty.Body = String(result.value);

        // inform listeners 
        this.mlBodySubject.next('ok'); 
      }
    );  

结果是

OSF.DDA.AsyncResult {value: null, status: "failed", error: OSF.DDA.Error}
value: null
status: "failed"
error: OSF.DDA.Error
name: "GenericResponseError"
message: "Er is een interne fout opgetreden."
code: 9020

感谢您的关注!

Wilco

outlook outlook-addin office-js
1个回答
0
投票

[抱歉,无法对原始问题发表评论。我有同样的问题。但是对我来说,它仅在OWA中以弹出模式复制电子邮件项(在OWA中双击任何电子邮件项都会在单独的浏览器窗口中打开项)。不幸的是,此错误有时不会重现。

© www.soinside.com 2019 - 2024. All rights reserved.