dougu1990 2016-12-05 20:57
浏览 168
已采纳

当json.NewDecoder.Decode失败时,如何保存响应正文?

This gist of this snippet seems to be fairly common in Go:

if err := json.NewDecoder(r.Body).Decode(&mr); err != nil {
    return mr, err
}

But how do I actually retrieve a string representation of r.Body in event of an error? In this case, it would be advantageous to include this with the error log as opposed to working through the struct only to find that Zip is sometimes a string and sometimes an integer.

Unfortunately, the body has already been closed at this point, so I'm not sure how to access it again.

Preemptively decoding the body to a string, and then later encoding it and attempting the struct mapping seems like an extra step. Is there a better way?

  • 写回答

1条回答 默认 最新

  • doumei9832 2016-12-05 21:06
    关注

    If you want to save the body, then save the body before Unmarshalling.

    //...
    body, err := ioutil.ReadAll(r.Body)
    if err != nil {
        return err
    }
    
    err = json.Unmarshal(body, &mr)
    //...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?