blueimp jquery 文件上传器中的 IE 6 JSON 响应处理
我已经实现了 blueimp jquery file uploader
并且在除 IE6 之外的所有浏览器上运行良好:(。
它不处理来自 uploads_controller#create
方法的 JSON 响应。它提供 JSON 文件和下载响应。
请帮我解决这个问题..
I have implemented blueimp jquery file uploader
and is running fine on all browsers except IE6 :(.
It is not handling JSON response from the uploads_controller#create
method. It gives JSON file with response for download.
Please help me to sort this issue..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照以下方式执行此操作可以解决问题
content_type = request.env['HTTP_ACCEPT'].split(',').include?("application/json") ? “应用程序/json”:“文本/html”
Doing it following way resoles the issue
content_type = request.env['HTTP_ACCEPT'].split(',').include?("application/json") ? "application/json" : "text/html"