Django 将图像存储在数据库中

发布于 2024-09-24 15:56:14 字数 103 浏览 2 评论 0原文

有谁知道是否有一种开箱即用的方式将图像直接存储在数据库中,而不是使用 ImageField 模型类型将其上传到 MEDIA_ROOT。 如果有,那么如何提供这些图像呢?

干杯

Does anyone know if there's an out-of-the box way of storing images directly in the database vs. using ImageField model type that simply uploads it to the MEDIA_ROOT.
And if there is, how does one serve those images then?

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

灯下孤影 2024-10-01 15:56:14

不,没有。这是有充分理由的。从数据库存储和提供图像的效率极其低下。将它们存储在文件系统上,并直接从 Apache 提供服务。

No, there isn't. And for good reason. It's horribly inefficient to store and serve images from the database. Store them on the filesystem, and serve them directly from Apache.

池予 2024-10-01 15:56:14

这里有一个很好的解决方案: http://djangosnippets.org/snippets/1305/ 它存储内容在数据库 blob 中。

There is a nice solution here: http://djangosnippets.org/snippets/1305/ it stores content in a database blob.

嘿看小鸭子会跑 2024-10-01 15:56:14

Django 中似乎没有内置的 BlobField 。但是,有一个可用的 此处。我不确定它是否支持所有后端,但它可能适合您。这样,您就可以编写一个表格和表格了。将图像作为附件上传并将其作为 blob 存储在数据库中的视图。

It seems there is no built-in BlobField in Django. However, there is one available here. I'm not sure if it supports all backends, but it might work for you. With that, you could write up a form & view that uploades the image as an attachment and stores it as a blob in the database.

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