Django自递归ManyToManyField过滤查询

发布于 2024-09-08 05:22:17 字数 380 浏览 5 评论 0原文

我有一个像这样的模型:

class Activity(models.Model):  
    title = models.CharField(max_length=200)
    summary = models.TextField(null=True, blank=True)  
    tasks = models.ManyToManyField('self', symmetrical=False, null=True, blank=True)  

它的工作原理是这样的,一个活动可以链接到自身,父活动称为“活动”,子活动将被称为“任务/任务”

我如何过滤模型获取所有“活动”以及如何过滤模型以获取所有“任务”?

感谢您的所有帮助。

I have a model like so:

class Activity(models.Model):  
    title = models.CharField(max_length=200)
    summary = models.TextField(null=True, blank=True)  
    tasks = models.ManyToManyField('self', symmetrical=False, null=True, blank=True)  

It works like this, an activity can be linked to itself and the parent activity is called an 'Activity' and the child activity/activities will be called 'Task/Tasks'

How do I filter the model to get all the 'Activities' and How do I filter the model to get all the 'Tasks' ?

Thanks for all the help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

枉心 2024-09-15 05:22:17

给你:

from django.db.models import Count

annotated_qs = Activity.objects.annotate(num_tasks=Count(tasks))

activities = annotated_qs.objects.filter(num_tasks=0)
tasks = annotated_qs.objects.filter(num_tasks__gt=0)

:)

如果你使用__is_null=True,你可以在没有注释的情况下获得更好的性能,但我现在记不起或快速谷歌它的语法。

Here you go:

from django.db.models import Count

annotated_qs = Activity.objects.annotate(num_tasks=Count(tasks))

activities = annotated_qs.objects.filter(num_tasks=0)
tasks = annotated_qs.objects.filter(num_tasks__gt=0)

:)

You could do it with better performance without annotation, if you use __is_null=True, but I can't recall or quick google it's syntax right now.

∞琼窗梦回ˉ 2024-09-15 05:22:17

获取所有顶级活动:

Activity.objects.filter(activity__isnull=True)

这是获取上面没有父活动的所有活动。

要获取所有任务、子任务等(上面有父活动的任务):

Activity.objects.filter(activity__isnull=False)

To get all top-level activities:

Activity.objects.filter(activity__isnull=True)

This is grabbing all activities that have no parent activity above them.

To get all tasks, sub-tasks, etc. (those that have a parent activity above them):

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