go如何把数据整理成嵌套json

我从数据库取到的数据如下:

planList := [{1 'plan1'}] // [{plan_id title}]
promotionList := [{1 2 'promotion1'}, {1 6 'promotion2'}] // [{plan_id promotion_id title}]
creativeList := [{2 3 "creative1"}, {2 4 "creative2"}]  // [{promotion_id creative_id title}]

我想把planList promotionList creativeList整理成一个如下格式json返回给前端:

{
  "menuData": [
    {
      "title": "plan1",
      "id": "1",
      "subs": [
        {
          "title": "promotion1",
          "id": "2",
          "subs": [
            {"title": "creative1", "id": "3"},
            {"title": "creative2", "id": "4"}
          ]
        },
        {
          "title": "promotion2"
          "id": "6",
          "subs": []
        }
      ]
    },
    {
      "title": "plan2"
      "id": 9,
      "subs": []
    }
  ]
}

就是一个plan的subs属性中有0到多个promotion数据,一个promotion的subs属性中有0到多个creative数据。promotion通过paln_id找到自己属于哪个plan,creative通过promotion_id找到自己属于哪个promotion。

请问数据要怎么整理

阅读 2.4k
2 个回答
type MyJsonName struct {
    MenuData []struct {
        ID   string `json:"id"`
        Subs []struct {
            ID   string `json:"id"`
            Subs []struct {
                ID    string `json:"id"`
                Title string `json:"title"`
            } `json:"subs"`
            Title string `json:"title"`
        } `json:"subs"`
        Title string `json:"title"`
    } `json:"menuData"`
}

定义者这样的结构体。
然后 for range 下面三个数组进行 渲染数据
planList
promotionList
creativeList

楼上的方案可行

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题