我正在保存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
}
);
}
}
);
}
}
);```
答案 0 :(得分:0)
将您的代码更新为:
copy.deepcopy
如果问题仍然存在,能否请您分享结果的屏幕截图以及您要实现的方案。