go json数据转发的实现代码

时间:2022-09-25 22:20:14

案例

例如,有个 GET 接口,可以批量获取用户信息

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
> curl 'http://localhost:8080/user/1,2,3'
[
  {
    "user_id":1,
    "other_suff":...
  },
  {
    "user_id":2,
    "other_suff":...
  },
  {
    "user_id":3,
    "other_suff":...
  }
]

同时,我们要将用户信息和他们的某些订单信息放在一起,组装成为