如题
http.post和http.client.post的区别是什么?
搜了下没有详细的说明,请大神指点迷津。
去看看 两个方法的实现,就清楚了
func Post(url, contentType string, body io.Reader) (resp *Response, err error) {
return DefaultClient.Post(url, contentType, body)
}
#4
更多评论
http.post 调用默认生成好的结构 http.client.post 要自己生成 结构 client:= http.client{}; client.post()
#1