HTTP JSON正文对地图的响应

时间:2018-11-26 18:17:25

标签: http dictionary go httpresponse

我正在尝试将HTTP JSON正文响应转换为golang / go中的map [string] interface {}。

这是我编写的代码:

func fromHTTPResponse(httpResponse *http.Response, errMsg string )(APIResponse, error){
    temp, _ := strconv.Atoi(httpResponse.Status)

    var data map[string]interface{}
    resp, errResp := json.Marshal(httpResponse.Body)
    defer httpResponse.Body.Close()
    if errResp != nil {
        return APIResponse{}, errResp
    }

    err := json.Unmarshal(resp, &data)
    if err != nil {
        return APIResponse{}, err
    }


    return APIResponse{httpResponse.Status, data, (temp == OK_RESPONE_CODE), errMsg, map[string]interface{}{} }, nil
}

我成功连接到服务器。响应的主体包含JSON数据。运行代码后,数据指向nil,为什么?

2 个答案:

答案 0 :(得分:0)

*http.Response.Body的类型为io.ReadCloser。而且您没有使用正确的方法读取正文数据并将其转换为[]byte。尝试使用此:

resp, errResp := ioutil.ReadAll(httpResponse.Body)

答案 1 :(得分:0)

http.Response.Bodyio.ReadCloser。所以用这个:

err := json.NewDecoder(httpResponse.Body).Decode(&data)