Rails,从 BLOB 数据库下载
我有一个问题 我将上传数据保存在数据库中的 blob 文件类型中。
现在我想下载它。
如何管理
我已经尝试过的方法(document_file 是一个包含 blob 数据的字段)
send_file @attachment.document_file, :disposition = > “附件”
但出现错误...
任何人都可以帮忙吗?
谢谢 :)
i have one problem
I save my upload data in the blob file type in the database..
now i want to download it..
how to manage that
i have try this way (document_file is a field with blob data)
send_file @attachment.document_file, :disposition => 'attachment'
but comes error...
anyone can help?
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您应该对 blob 数据使用 send_data 而不是 send_file:
考虑到“attachment”是默认值,因此您可以省略它。您应该收到此错误,因为 send_file 需要文件路径作为参数,而不是 blob。
您还可以查看: http://api.rubyonrails .org/classes/ActionController/Streaming.html#method-i-send_data
Maybe you should use send_data for a blob data instead of send_file:
Consider that 'attachment' is the default value, so you can omit it. You should get this error because send_file needs a file path as argument, not a blob.
You can also take a look at: http://api.rubyonrails.org/classes/ActionController/Streaming.html#method-i-send_data