上传文件时,如何从 django Admin 验证文件类型?
我正在尝试从 django admin 上传视频,但我看不到如何验证用户是否只上传视频文件,而不上传其他文件类型。
有什么想法吗?
谢谢
对不起我的英语
I'm trying to upload videos from django admin, but I can't see how to validate that the user is upload only video files, and no other file types.
Any idea?
Thanks
Sorry with my English
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的方法是为您的管理类创建一个自定义 ModelForm,并编写一个
clean_[video_field_name]
方法来验证文件并在文件类型不正确时抛出 ValidationError。用于执行此操作的文档位于: 向管理员添加自定义验证
The right way to do this is to create a custom ModelForm for your admin class, and write a
clean_[video_field_name]
method that validates the file and throws a ValidationError if it's not of the correct type.The docs for doing this are here: Adding custom validation to the admin