登录
首页 >  Golang >  Go问答

将返回数据进行分类

来源:stackoverflow

时间:2024-03-13 19:12:25 501浏览 收藏

欢迎各位小伙伴来到golang学习网,相聚于此都是缘哈哈哈!今天我给大家带来《将返回数据进行分类》,这篇文章主要讲到等等知识,如果你对Golang相关的知识非常感兴趣或者正在自学,都可以关注我,我会持续更新相关文章!当然,有什么建议也欢迎在评论留言提出!一起学习!

问题内容

我正在尝试从数据库中获取数据,但是当我显示并将其变成 api 响应时,我在根据 productid 对其进行分组时遇到了一些问题。

我有基于 golang 创建的响应数据,如下所示:

[
            {
                "product_id": "1",
                "product_name": "cardigan",
                "pitems": [
                    {
                        "id": "625ad1bc-66c5-440e-a527-d029d401ec2b",
                        "name": "box",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c6-440e-a527-d029d401ec2b",
                        "name": "test items1",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c7-440e-a527-d029d401ec2b",
                        "name": "test items2",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c8-440e-a527-d029d401ec2b",
                        "name": "test items3",
                        "qty": 1
                    }
                ]
            },
            {
                "product_id": "2",
                "product_name": "polo",
                "product_sku": "p01",
                "items": [
                    {
                        "id": "625ad1bc-66c5-440e-a527-d029d401ec2b",
                        "name": "box",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c6-440e-a527-d029d401ec2b",
                        "name": "test items1",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c7-440e-a527-d029d401ec2b",
                        "name": "test items2",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c8-440e-a527-d029d401ec2b",
                        "name": "test items3",
                        "qty": 1
                    }
                ]
            }
        ]

但是这个回复不是我预期的结果,我预期的结果是这样的:

[
            {
                "product_id": "1",
                "product_name": "Cardigan",
                "pitems": [
                    {
                        "id": "625ad1bc-66c5-440e-a527-d029d401ec2b",
                        "name": "Box",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c6-440e-a527-d029d401ec2b",
                        "name": "test items1",
                        "qty": 1
                    },
                    {
                        "id": "625ad1bc-66c7-440e-a527-d029d401ec2b",
                        "name": "test items2",
                        "qty": 1
                    }
                ]
            },
            {
                "product_id": "2",
                "product_name": "Polo",
                "product_sku": "P01",
                "items": [
                    {
                        "id": "625ad1bc-66c8-440e-a527-d029d401ec2b",
                        "name": "test items3",
                        "qty": 1
                    }
                ]
            }
        ]

谁能帮我解决我的问题吗?


解决方案


显示详细数据是什么意思?

简单的方法是:

创建 2 个这样的函数:

func detail(id int)(result model.Struct) 
{  return result   }

func product()(result model.Struct_Result) {

 for data.Next() {  

 // call func detail   

 data.Scan(&id, &product)   

 detailResult := detail(id) 
   
 // then put together with struct and mix append ()

  outputLoop := model.Result{
  "product_id": id,
  "pitems": [
               {
                "id": detailResult.id,
                "name": detailResult.name,
                "qty": detailResult.qty
               },
            ]
  }

    result = append(result,outputLoop) 

  }
return result
 }

好了,本文到此结束,带大家了解了《将返回数据进行分类》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>