还在学习围棋。如果我在 mysqp/pg 数据库中有一个帖子和评论表关系,例如Post id, titleComments 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 的示例会很棒。
1 回答
- 1 回答
- 0 关注
- 181 浏览
添加回答
举报
0/150
提交
取消