标签: django django-models
我有一个Question模型和一个Response模型,其中包含Question的外键。
Question
Response
我可以使用question.response_set
question.response_set
我想对
Question.objects.exclude(response_set=None)
最好的方法是什么?
答案 0 :(得分:4)
Question.objects.exclude(response__isnull=True)
应仅返回带回复的问题