Go에서 몇 가지 http 응답이 있으며 때때로 전화하는 것을 잊습니다.
resp.Body.Close()
이 경우 어떻게됩니까? 메모리 누수가 있습니까? 또한 defer resp.Body.Close()
응답 대상을받은 직후 에 넣어도 안전한 가요?
client := http.DefaultClient
resp, err := client.Do(req)
defer resp.Body.Close()
if err != nil {
return nil, err
}
어떤이 오류가 발생, 수있는 경우 resp
또는 resp.Body
전무 할?