window.postMessage(...) 用于跨域文件上传?

发布于 2024-10-21 10:34:25 字数 67 浏览 4 评论 0原文

有人知道是否可以使用 window.postMessage(...) 进行跨域文件上传,或者使用另一种技术来完成此任务?

Does someone know if it's possible to make a cross domain file upload with window.postMessage(...) or, alternatively, of another technique to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

有木有妳兜一样 2024-10-28 10:34:25

您必须将用于发送数据的常规 POST 与用于响应的 postMessage (或旧支持的等效项)结合起来。

您可以在 此处查看如何使用 easyXDM 完成此操作

You will have to combine a regular POST for sending the data with postMessage (or equivalent for legacy support) for the response.

You can see how this is done with easyXDM here

走过海棠暮 2024-10-28 10:34:25

window.postMessage() 只能来回发送字符串,因此不能发送二进制数据。您只需将标准表单发布到不同的域即可。

window.postMessage() can only send strings back and forth, so you can't send binary data. You could just do a standard form post to a different domain.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文