Rails,从BLOB数据库下载

adh*_*yat 3 ruby-on-rails sendfile

我有一个问题,我将上传数据保存在数据库中的blob文件类型中..

现在我想下载它..

如何管理

我试过这种方式(document_file是一个带有blob数据的字段)

send_file @ attachment.document_file,:disposition =>'attachment'

但来了错误......

谁有人可以帮忙?

谢谢 :)

Mat*_*ani 5

也许您应该使用send_data来代替blo_data而不是send_file:

send_data @attachment.document_file, :disposition => 'attachment'
Run Code Online (Sandbox Code Playgroud)

考虑"附件"是默认值,因此您可以省略它.您应该收到此错误,因为send_file需要文件路径作为参数,而不是blob.

您还可以查看:http://api.rubyonrails.org/classes/ActionController/Streaming.html#method-i-send_data