html5和跨域上传
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 withAccess-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.