gpt4 book ai didi

python - Django:如何返回项目属性 choice_set 不为空的查询集?

转载 作者:太空宇宙 更新时间:2023-11-03 15:03:18 27 4
gpt4 key购买 nike

文件 models.py

# Create your models here.
import datetime
from django.utils import timezone
from django.utils.encoding import python_2_unicode_compatible

class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('data published')
def __str__(self):
return self.question_text

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

文件views.py

from django.views import generic
from .models import Question, Choice
from django.utils import timezone

class DetailView(generic.DetailView):
model = Question
template_name = 'polls/detail.html'

def get_queryset(self):
"""
Excludes any questions that aren't published yet.
"""
return Question.objects.filter(pub_date__lte=timezone.now())

使用 python 在数据库中创建问题:

from django.utils import timezone
from polls.models imoprt Question, Choice
q1 = Question.objects.create(pub_date=timezone.now(), question_text="1+1=?")
q1.choice_set.create(choice_text="A. 1")
q1.choice_set.create(choice_text="B. 2")
q2 = Question.objects.create(pub_date=timezone.now(), question_text="8+2=?")

在函数 get_queryset 中,如何返回该问题有选择的查询集?例如,Queryset INCLUDE q1(两个选择),但 EXCLUDE q2(没有选择)。

谢谢!

最佳答案

您可以通过排除choice=None来过滤没有选择的问题。

你可以做到,

def get_queryset(self):        
return Question.objects.filter(pub_date__lte=timezone.now()).exclude(choice=None)

您可以使用exclude(choice=None)exclude(choice__isnull=True)

关于python - Django:如何返回项目属性 choice_set 不为空的查询集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44884000/

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