为了账号安全,请及时绑定邮箱和手机立即绑定

ioutil.ReadAll 和 unmarshal 对嵌套的 curl 响应返回错误

ioutil.ReadAll 和 unmarshal 对嵌套的 curl 响应返回错误

Go
慕村225694 2023-02-21 13:04:20
为了给你上下文,我正在卷曲到第三方端点,响应类似于这个{    "code": 200,    "message": "Success",    "data": {        "list": [            {               "user": "user A",               "status" : "normal"            },            {                "user": "user B",               "status" : "normal"            }        ],        "page": 1,        "total_pages": 5000    }}我的结构类似于type User struct {    Code    int    `json:"code"`    Message string `json:"message"`    Data    struct {        List []struct {            User   string `json:"user"`            Status string `json:"status"`        } `json:"list"`        Page       int `json:"page"`        TotalPages int `json:"total_pages"`    } `json:"data"`}请检查我的代码defer response.Body.Close()io_response, err := ioutil.ReadAll(response.Body)returnData := User{}err = jsoniter.Unmarshal([]byte(io_response), &returnData)if err != nil {   log.Println(err)}上面的代码返回错误decode slice: expect [ or n, but found {, error found in #10 byte of ...|:{"list":{"1"当我执行 fmt.Println(string(io_response)) 时,返回结果如下:{ "code": 200, "message": "成功", "data": { "list": { "1": { "user": "user A", "status": "normal" }, "2 ": { "user": "user A", "status": "normal" } }, "page": 1, "total_pages": 2000 } }你能教我如何正确阅读回复或如何解组吗?谢谢
查看完整描述

1 回答

?
绝地无双

TA贡献1946条经验 获得超4个赞

你可以这样定义你的结构:


type User struct {

    Code    int    `json:"code"`

    Message string `json:"message"`

    Data    struct {

        List map[string]struct {

            User   string `json:"user"`

            Status string `json:"status"`

        } `json:"list"`

        Page       int `json:"page"`

        TotalPages int `json:"total_pages"`

    } `json:"data"`

}


查看完整回答
反对 回复 2023-02-21
  • 1 回答
  • 0 关注
  • 166 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信