繁体   English   中英

有没有办法停止在 outlook web 加载项中上传附件?

[英]Is there a way to stop uploading an attachment in outlook web add-in?

我正在尝试从 outlook 邮箱获取附件,但出于安全考虑,我不想将其上传到 Microsoft 服务器。

我在我的 xml 文件中添加了扩展点:

<ExtensionPoint xsi:type="LaunchEvent">
<LaunchEvents>
<LaunchEvent Type="OnMessageAttachmentsChanged" FunctionName="test" />
</LaunchEvents>
<SourceLocation resid="residUILessFunctionFileUrl" />
</ExtensionPoint>但我的测试 function 仅在文件上传到服务器后调用。 我想知道我是否可以在上传文件之前执行 event.preventDefault(),但 launchevent 返回的事件不是正常的 html 事件。

这是我的测试 function:

function test(event){
event.preventDefault() //This isn't possible
console.log(event)
}

目前,您请求的功能不是产品的一部分。 我们在技术社区页面上跟踪 Outlook 加载项功能请求。 请在那里提交您的请求并选择合适的标签。 当我们通过我们的计划流程 go 时,我们会考虑技术社区的功能请求。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM