在 Django 中使用模型和非基于模型的表单保存文件
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,这就是我正在寻找的:
找到了一个很好的解释 这里。
OK, this is what I was looking for:
Found a good explanation here.
如果你的模型是
你可以简单地做
If your model is
you can simply do