美文网首页
解析http的repsonse--golang

解析http的repsonse--golang

作者: heliping_peter | 来源:发表于2019-10-14 14:40 被阅读0次

    1. 返回是json的数组,需要反序列化为接口数组

    var ruser []interface{}
    json.Unmashal(respBody, &ruser)
    rrt := ruser[0].(map[string]interface{})
    fmt.Println(rrt["user_id"])
    //[{"user_id":9}]
    

    相关文章

      网友评论

          本文标题:解析http的repsonse--golang

          本文链接:https://www.haomeiwen.com/subject/uwjrmctx.html