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

时间:2011-10-04 09:59:17

标签: jquery ruby-on-rails json internet-explorer blueimp

我已经实现了blueimp jquery file uploader并且在除IE6之外的所有浏览器上运行良好:(。
它不处理来自uploads_controller#create方法的JSON响应。它为JSON文件提供了下载响应。

请帮我解决这个问题..

1 个答案:

答案 0 :(得分:1)

按照以下方式解决问题

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`