gpt4 book ai didi

Django 在 ManyToMany 计数上过滤模型?

转载 作者:行者123 更新时间:2023-11-28 19:33:27 25 4
gpt4 key购买 nike

假设我的 models.py 中有这样的东西:

class Hipster(models.Model):
name = CharField(max_length=50)

class Party(models.Model):
organiser = models.ForeignKey()
participants = models.ManyToManyField(Profile, related_name="participants")

现在在我的 views.py 中,我想做一个查询,为参与者超过 0 的用户获取一个派对。

可能是这样的:

user = Hipster.get(pk=1) 
hip_parties = Party.objects.filter(organiser=user, len(participants) > 0)

最好的方法是什么?

最佳答案

如果这可行,我会这样做。

最佳方式可能意味着很多事情:最好的性能、最易维护等。因此我不会说这是最好的方式,但我喜欢尽可能地坚持 ORM 特性,因为它看起来更易于维护。

from django.db.models import Count

user = Hipster.objects.get(pk=1)
hip_parties = (Party.objects.annotate(num_participants=Count('participants'))
.filter(organiser=user, num_participants__gt=0))

关于Django 在 ManyToMany 计数上过滤模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7883916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com