Rails,从 BLOB 数据库下载

发布于 2024-10-27 15:17:26 字数 241 浏览 0 评论 0原文

我有一个问题 我将上传数据保存在数据库中的 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 技术交流群。

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

发布评论

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

评论(1

挽梦忆笙歌 2024-11-03 15:17:26

也许您应该对 blob 数据使用 send_data 而不是 send_file:

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

考虑到“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:

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文