0

我正在保存 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
                            }
                        );
                    }
                }
            );
        }
    }
);```
4

1 回答 1

0

将您的代码更新为:

Office.context.mailbox.subject.setAsync -> Office.context.mailbox.item.subject.setAsync
Office.context.mailbox.body.setAsync -> Office.context.mailbox.item.body.setAsync

如果问题仍然存在,您能否分享结果的屏幕截图和您尝试实现的场景。

于 2019-05-21T06:02:51.000 回答