http.post和http.client.post的区别是什么

cjrey · · 1552 次点击
去看看 两个方法的实现,就清楚了 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
除此之外,功能上无任何差异吗?
#2