上传文件时,如何从 django Admin 验证文件类型?

发布于 2024-09-07 16:36:42 字数 107 浏览 2 评论 0原文

我正在尝试从 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 技术交流群。

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

发布评论

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

评论(1

沉鱼一梦 2024-09-14 16:36:42

正确的方法是为您的管理类创建一个自定义 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

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