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

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!