window.postMessage(...) 用于跨域文件上传?
有人知道是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将用于发送数据的常规
POST
与用于响应的postMessage
(或旧支持的等效项)结合起来。您可以在 此处查看如何使用 easyXDM 完成此操作
You will have to combine a regular
POST
for sending the data withpostMessage
(or equivalent for legacy support) for the response.You can see how this is done with easyXDM here
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.