从文档https://golang.org/pkg/net/http/读取正文响应,您可以使用包ioutil
喜欢 :
resp, err := http.Get("http://example.com/") if err != nil { // handle error } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body)