使用 golang 与 json 的 SQL 关系

还在学习围棋。


如果我在 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 的示例会很棒。


HUH函数
浏览 182回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go