在 Django 中使用模型和非基于模型的表单保存文件

发布于 2024-08-02 12:57:26 字数 101 浏览 3 评论 0原文

我有一个带有 FileField 的模型和一个也有 FileField 的表单。该表单不是基于模型的 ModelForm,而是常规表单。

如何将表单上传的文件保存到模型中?

I have a model with a FileField and a form that has a FileField as well. The form is not a ModelForm based on the model but it's a regular Form.

How do I save the uploaded file from the form to the model?

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

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

发布评论

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

评论(2

亢潮 2024-08-09 12:57:26

好的,这就是我正在寻找的:

from django.core.files.base import ContentFile
def save_file(request):
    mymodel = MyModel.objects.get(id=1)
    file_content = ContentFile(request.FILES['video'].read())
    mymodel.video.save(request.FILES['video'].name, file_content)

找到了一个很好的解释 这里

OK, this is what I was looking for:

from django.core.files.base import ContentFile
def save_file(request):
    mymodel = MyModel.objects.get(id=1)
    file_content = ContentFile(request.FILES['video'].read())
    mymodel.video.save(request.FILES['video'].name, file_content)

Found a good explanation here.

多像笑话 2024-08-09 12:57:26

如果你的模型是

class Thing(models.Model):
    document = models.FileField(upload_to='documents')

你可以简单地做

thing = Thing()
thing.document = request.FILES['Filedata']
thing.save()

If your model is

class Thing(models.Model):
    document = models.FileField(upload_to='documents')

you can simply do

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