gpt4 book ai didi

python - 仅查询具有关系的对象的 PostgreSQL 数据库(使用 Django)

转载 作者:行者123 更新时间:2023-11-29 13:21:08 24 4
gpt4 key购买 nike

我目前正在通过官方教程学习 Django,并决定按照建议尝试添加一些额外的功能和测试 here .

我现在在数据库中有两个模型,基本上是这样的:

class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')

class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)

我设置了一个 View 来显示问题列表。我想要做的是为 View 创建一个查询,该查询将只包含具有关联选项的问题对象。任何没有相关选择对象的问题对象不应包含在结果集中。此查询还会忽略日期在未来的问题并对它们进行排序,但这部分很好,并且在教程之外。

这是我到目前为止想出的。它似乎有效,但我忍不住认为我已经以一种非常落后和低效的方式完成了它。是否可以进行一个查询来处理数据库中的所有内容,而不是两个查询和一个列表理解?

choices = Choice.objects.prefetch_related(
'question').distinct('question')
question_ids = [x.question.id for x in choices]
return Question.objects.filter(
id__in=question_ids).filter(
pub_date__lte=timezone.now()).order_by('-pub_date')[:5]

最佳答案

您可以通过与其关联的Choice 对象的计数来注释Question 查询集,然后排除计数为零的对象:

from django.db.models import Count
questions = Question.objects \
.annotate(choice_cnt=Count('choice')) \
.exclude(choice_cnt=0) \
.filter(pub_date__lte=timezone.now()) \
.order_by('-pub_date')[:5]

关于python - 仅查询具有关系的对象的 PostgreSQL 数据库(使用 Django),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41615377/

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