如何在 google-app-engine 上的 db.ListProperty 中引用某些模型

发布于 2024-09-10 11:24:50 字数 584 浏览 4 评论 0原文

这是我的模型:

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显示正确的东西。

谢谢

this is my model:

class Geo(db.Model):
    entry = db.ListProperty(db.Key)

geo=Geo()
geo.entry.append(otherModel.key())

and the html is :

{% for i in geo.entry %}
        <p><a href="{{ i.link }}">{{ i.title }}</a></p>
{% endfor%}

but it show nothing,

i think maybe should :

class Geo(db.Model):
    entry = db.ListProperty(db.Model)
geo=Geo()
geo.entry.append(otherModel)

but it show :

ValueError: Item type Model is not acceptable

so , how to make the html shows the right thing.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

皇甫轩 2024-09-17 11:24:50

您不能使用该模板(或类似的模板)直接显示模型,但您可以通过简单地在键列表上调用 db.get 来轻松准备具有模型列表的上下文 -例如,在上下文字典的开头添加 {'entries': db.get(listofkeys), ... ,并在模板中添加 for i in items

You can't use that template (or the like) to show the model directly, but you can easily prepare a context with a list of models by simply calling db.get on the list of keys -- e.g., have {'entries': db.get(listofkeys), ... at the start of your context dictionary, and for i in entries in the template.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文