替代用户在 django admin 中选择界面以减少大型网站的页面大小?
我有一个基于 Django 的网站,包含大约 300,000 个 User 对象。对于用户具有外键字段的对象的管理页面需要非常很长的时间来加载,因为生成的表单大小约为 6MB。当然,生成的下拉菜单也不是特别有用。
有没有现成的替代品可以处理这种情况?我一直在谷歌搜索片段或博客条目,但还没有找到任何东西。我想要更小的下载大小和更可用的界面。
I have a Django-based site with roughly 300,000 User objects. Admin pages for objects with a ForeignKey field to User take a very long time to load as the resulting form is about 6MB in size. Of course, the resulting dropdown isn't particularly useful, either.
Are there any off-the-shelf replacements for handling this case? I've been googling for a snippet or a blog entry, but haven't found anything yet. I'd like to have a smaller download size and a more usable interface.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ModelAdmin 类提供了
raw_id_fields 选项,其中呈现一个输入字段和一个搜索按钮。它会显示一个弹出对话框来选择相关的用户对象,而无需加载所有对象
The ModelAdmin class offers an
raw_id_fields option, which present a input field and a search button. It presents a popup dialog to select the related user object without loading all