保存Outlook邮件上下文后,为什么有时在eventId中得到“ /”?

时间:2019-05-16 07:08:22

标签: outlook outlook-addin office-addins outlook-web-addins microsoft-graph-mail

我正在保存Outlook上下文,并在saveAsync方法中获取事件ID。有时,事件ID中包含“ /”。如果我使用带有'/'的eventId,它将失败。有人可以帮我吗?

Office.context.mailbox.subject.setAsync
(
    "subject",
    function (asyncResult0)
    {
        if (asyncResult0.status === Office.AsyncResultStatus.Succeeded)
        {
            Office.context.mailbox.body.setAsync
            (
                "sample body",
                function (asyncResult1)
                {
                    if (asyncResult1.status === Office.AsyncResultStatus.Succeeded)
                    {
                        Office.context.mailbox.item.saveAsync
                        (
                            function (result)
                            {
                                **let eventId = result.value;**
                                // Process the result
                            }
                        );
                    }
                }
            );
        }
    }
);```

1 个答案:

答案 0 :(得分:0)

将您的代码更新为:

copy.deepcopy

如果问题仍然存在,能否请您分享结果的屏幕截图以及您要实现的方案。