Django-MPTT - 按直接后代的数量对根节点进行排序
我正在使用 Django-MPTT 来显示一个简单的 2 级层次结构(root => child(ren))。我正在寻找一种方法来构造我的查询集,以便返回的节点首先具有最多子节点的根节点,最后返回具有最少子节点(如果有)的节点。
I'm using Django-MPTT to do a display a simple 2 level hierarchy (root => child(ren)). I'm looking for a way to structure my queryset so that nodes get returned with the root node having the most children first and the node with the least children (if any) last.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看您的
parent
字段并记下 related_name。假设它是孩子
。然后执行以下操作:如果您需要访问子实例本身,您可能还需要考虑执行
qs.prefetch_lated('children')
。Take a look at your
parent
field and make note of the related_name. Suppose it ischildren
. Then do the following:If you need access to the child instances themselves, you may also want to look at doing a
qs.prefetch_related('children')
as well.像这样的事情应该这样做:
something like this should do it: