Django,从模型方法查询过滤
发布于 2021-01-29 18:13:17
我有以下模型:
def Foo(Models.model):
size = models.IntegerField()
# other fields
def is_active(self):
if check_condition:
return True
else:
return False
def Bar(Models.model):
foo = models.ForeignKey("Foo")
# other fields
现在,我要查询具有活动Foo的Bar:
Bar.objects.filter(foo.is_active())
我收到诸如以下错误
SyntaxError at /
('non-keyword arg after keyword arg'
我该如何实现?
关注者
0
被浏览
50