这是我的模型:
class Geo(db.Model):
entry = db.ListProperty(db.Key)
geo=Geo()
geo.entry.append(otherModel.key())
html是:
{% for i in geo.entry %}
<p><a href="{{ i.link }}">{{ i.title }}</a></p>
{% endfor%}
但它什么也没显示,
我想也许应该:
class Geo(db.Model):
entry = db.ListProperty(db.Model)
geo=Geo()
geo.entry.append(otherModel)
但它显示:
ValueError: Item type Model is not acceptable
那么,如何使 html 显示正确的内容。
谢谢