html5和跨域上传

发布于 2024-12-10 03:46:10 字数 141 浏览 1 评论 0原文

我使用 plupload 和 html5。我尝试从跨域站点上传文件。文件已上传(我为服务器添加标头 Access-Control-Allow-Origin * ),但服务器的响应为空。在这种情况下如何使用上传?例如,在 jquery 中,我简单地选择方法 jsonp。

I use plupload with html5. I try to upload file from cross-domain site. File uploaded ( I add header Access-Control-Allow-Origin * for server ), but response from server is empty. How to use upload in this case ? For example In jquery I simple select method jsonp.

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

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

发布评论

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

评论(1

属性 2024-12-17 03:46:10

plupload 还设置了 Content-Type 标头,因此您的服务器还必须使用 Access-Control-Allow-Headers: Content-Type 进行响应,否则 CORS 的 OPTIONS 请求将失败。

如果您需要对此进行调试,Google Chrome 中的 Web Inspector 可以很好地指出 CORS 请求失败的原因。

plupload also sets a Content-Type header, so your server must also respond with Access-Control-Allow-Headers: Content-Type or else the OPTIONS request for CORS will fail.

If you need to debug this, the Web Inspector in Google Chrome does a fairly good job at pointing out which was the cause for your CORS request to fail.

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