package mainimport ( "fmt" "io/IoUtil" "net/http" "net/url" "strings")func main() { v := url.Values{} v.Set("huifu","hello world") body := IoUtil.nopCloser(strings.NewReader(v.Encode())) //把form数据编下码 clIEnt := &http.ClIEnt{} req,_ := http.NewRequest("POST","http://192.168.2.83:8080/bingqinggongxiang/test2",body) req.header.Set("Content-Type","application/x-www-form-urlencoded; param=value") //这个一定要加,不加form的值post不过去,被坑了两小时 fmt.Printf("%+v\n",req) //看下发送的结构 resp,err := clIEnt.Do(req) //发送 defer resp.Body.Close() //一定要关闭resp.Body data,_ := IoUtil.ReadAll(resp.Body) fmt.Println(string(data),err)}总结
以上是内存溢出为你收集整理的golang 利用http.Client POST数据全部内容,希望文章能够帮你解决golang 利用http.Client POST数据所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)