我有一个这样的模型:
class Thing(models.Model):
property1 = models.IntegerField()
property2 = models.IntegerField()
property3 = models.IntegerField()
class Subthing(models.Model):
subproperty = models.IntegerField()
thing = modelsForeignkey(Thing)
main = models.BooleanField()
我有一个函数,它传递了一个过滤器列表,其中每个过滤器的格式为 {'type':something,'value':x}。此函数需要返回一组结果,并将所有过滤器组合在一起:
final_q = Q()
for filter in filters:
q = None
if filter['type'] =='thing-property1':
q = Q(property1=filter['value'])
elif filter['type'] =='thing-property2':
q = Q(property2=filter['value'])
elif filter['type'] =='thing-property2':
q = Q(property3=filter['value'])
if q:
final_q = final_q & q
return Thing.objects.filter(final_q).distinct()
每个 Subthing 都有一个布尔属性“main”。每个事物都有 1 个且只有 1 个子事物,其中 main==True。
我现在需要添加过滤器来返回所有具有 Subthing 的事物 wheremain==True
和subproperty==filter['value']
我可以将其作为Q
我正在构建的对象的一部分吗?如果没有怎么办?在我的新过滤器之前获得的查询集可能非常大,所以我想要一种不涉及循环结果的方法。