通过 Ancestor 引用实体时如何创建 JSON 响应?

发布于 2024-11-29 19:28:12 字数 853 浏览 3 评论 0原文

也许我的问题有些不具体,对此感到抱歉。我现在正在学习 python 和应用程序引擎(webapp2)。

我有这样的课程:

class Ice(db.Model):

    """Models an individual Guestbook entry with an author, content, and date."""
    name = db.StringProperty()
    description = db.StringProperty(multiline=True)
    date = db.DateTimeProperty(auto_now_add=True)

    def getTags(self):
        return Tag.all().ancestor(self).fetch(10)

标签是通过祖先引用的。 当我使用 jinja 模板时,我可以为每个 Ice 调用 ice.getTags()
现在我想将我的 Ice 对象序列化为 JSON,并希望在我的 JSON 输出中拥有属于 Ice 对象的所有标签。

这为我进行了序列化:
它工作正常,但不包含标签。
我感觉我必须将标签声明为冰属性,但我不知道如何。

class IceHandler(basehandler.BaseHandler):

    def get(self):
        ice_query = model.Ice.all().order('-date')
        ices = ice_query.fetch(10)

        self.response.write(json.encode(ices))

谢谢!

Maybe my question is somehow unspecific, sorry for that. I'm learning python and app engine (webapp2) at the moment.

I have this class:

class Ice(db.Model):

    """Models an individual Guestbook entry with an author, content, and date."""
    name = db.StringProperty()
    description = db.StringProperty(multiline=True)
    date = db.DateTimeProperty(auto_now_add=True)

    def getTags(self):
        return Tag.all().ancestor(self).fetch(10)

Tags are referenced via ancestor.
When I use a jinja-template i can call ice.getTags() foreach Ice.

Now i want to serialize my Ice-object to JSON and want to have all Tags that belong to the Ice-object in my JSON-Output.

This does serialisation for me:
It works okay, but it doesn't include the Tags.
I'm feeling, that i have to declare Tags as Ice-Attribute, but i don't know how.

class IceHandler(basehandler.BaseHandler):

    def get(self):
        ice_query = model.Ice.all().order('-date')
        ices = ice_query.fetch(10)

        self.response.write(json.encode(ices))

Thanks!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文