我有两个模型,像这样:
class A(db.Model):
propertyA = db.XxxProperty(required=True)
class B(db.Model):
reference = db.ReferenceProperty(A,collection_name='Bs',required=Ture)
propertyB = db.XxxProperty(required=True)
现在,我想使用模板显示所有 As 的信息。在python文件中,我这样做:
As = A.all().filter('propertyA =', XXX).fetch(10)
我将 As 传递给模板,如下所示:
{% for a in As%}
{{a.propertyA}}
*****SHOW EVERY B THAT a HAS*****
{% endfor%}
这是问题所在,每个 A 可能有很多 B,我需要这样的东西:
a_has_these_Bs = a.BS
for b in a_has_these_Bs:
b.propertyB
但是如何将上面的查询内容放入模板中?还有其他方法可以实现我的意图吗?
谢谢!