还在学习围棋。
如果我在 mysqp/pg 数据库中有一个帖子和评论表关系,例如
Post id, title
Comments id, post_id, comment
我想要一个 json 表示:
{
id: 1
title: "A blog post"
comments: [
{id: 1, comment: "This is comment 1"},
{id: 2, comment: "This is comment 2"}
]
}
我能够抓取帖子并显示 json,而不是评论。我想我需要在 Post 结构中有一组 Comment 结构。只是不确定如何将它们联系在一起,尤其是行的扫描。
显示从这样的关系输出 json 的示例会很棒。
相关分类