使用 django-profiles 上传文件
我正在使用 django-contrib 包 django-profiles,并且一切都很好 - 我唯一的问题是我希望表单上传文件(用于头像),不幸的是 - 表单不上传文件。
有没有人成功地使用 django-profiles 进行文件上传? 我想避免只为头像设置单独的上传视图?
任何帮助深表感谢!
谢谢, 马丁
I'm using the django-contrib package django-profiles, and everything is working great - my only issue is that I would like the form to upload a file (for an avatar), unfortunately - the form does not upload the file.
Has anyone successfully managed to get file uploads working with django-profiles? I want to avoid having to set up a seperate upload view just for the avatar?
Any help is much appreciated!
Thanks,
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的模板中,在表单标签中添加 enctype="multipart/form-data" 。 例子:
In your template add enctype="multipart/form-data" in form tag. Example: