读取Django FileField的数据

发布于 2024-10-30 19:42:36 字数 132 浏览 0 评论 0原文

我试图在将数据保存到数据库之前将其保存/下载到本地目录中,该数据库是在 Django FileField 中选择的。下载后,如何在 FileField 中维护所选文件的实例,以便将其保存到数据库中?

I am trying to save/download the data on local directory before save it to database, which is selected in Django FileField. After download how do I maintain the instance of that selected file in that FileField so that I can save it to database?

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

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

发布评论

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

评论(1

孤芳又自赏 2024-11-06 19:42:36

不确定我是否完全理解你的问题,但是......

默认情况下 Django 的 FileField 不会将文件存储在数据库中,而是存储在磁盘上(尽管可以使用自定义存储后端来完成:http://djangosnippets.org/snippets/1305/)。仅对文件的引用存储在数据库中(请参阅:http: //docs.djangoproject.com/en/dev/topics/files/#file-storage)。

如果您想自定义此行为,您应该查看文档: http://docs.djangoproject.com/en/dev/topics/http/file-uploads/#file-uploads

Not sure if i completely understand your problem, but ...

by default Django's FileField doesn't store the file in your database but on disk (though it can be done using a custom storage backend: http://djangosnippets.org/snippets/1305/). Only the reference to the file is stored in the database (See: http://docs.djangoproject.com/en/dev/topics/files/#file-storage).

If you want to customize this behavior you should take a look at at docs: http://docs.djangoproject.com/en/dev/topics/http/file-uploads/#file-uploads

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