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)
    //...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大