0

我没有使用 Rails,所以很send_data遗憾,该功能不起作用。

image = User.select("image, image_mime").where("username = '#{params[:name]}'").first
  send_data( image.image,
             :type => image.image_mime,
             :disposition => 'inline')
4

1 回答 1

2

查看send_file方法的来源:

def send_file(filename, content_type = nil, content_disposition = nil)
  content_type ||= Rack::Mime.mime_type(::File.extname(filename))
  content_disposition ||= File.basename(filename)

  response.body = ::File.open(filename, 'rb')
  response['Content-Length'] = ::File.size(filename).to_s
  response['Content-Type'] = content_type
  response['Content-Disposition'] = content_disposition
  response.status = 200

  throw(:respond, response)
end

您可以尝试做同样的事情,只将正文设置为image.image而不是从文件中读取它。

于 2012-09-30T18:33:30.050 回答