blueimp jquery 文件上传器中的 IE 6 JSON 响应处理

发布于 2024-12-07 23:22:48 字数 181 浏览 1 评论 0原文

我已经实现了 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 技术交流群。

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

发布评论

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

评论(1

土豪 2024-12-14 23:22:48

按照以下方式执行此操作可以解决问题

content_type = request.env['HTTP_ACCEPT'].split(',').include?("application/json") ? “应用程序/json”:“文本/html”

  respond_to do |format|
    format.html
    format.json{render :json => [ @attached_file.to_jq_upload ].to_json, :content_type => content_type}
  end`

Doing it following way resoles the issue

content_type = request.env['HTTP_ACCEPT'].split(',').include?("application/json") ? "application/json" : "text/html"

  respond_to do |format|
    format.html
    format.json{render :json => [ @attached_file.to_jq_upload ].to_json, :content_type => content_type}
  end`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文