来源:未知 时间:2018-08-31 17:46 作者:小飞侠 阅读:次
[导读] packagemainimport(net/httpnet/urlfmtio/ioutil_iobytes)funcmain(){postFile()}funcpost(){//这是一个Post参数会被返回的地址strinUrl:=http://localhost:8080/aaa`这里写代码片`resopne,err:=http.PostForm(strinUrl,url.Values{num:{4...
package main import ( "net/http" "net/url" "fmt" "io/ioutil" _ "io" "bytes" ) func main() { postFile() } func post() { //这是一个Post 参数会被返回的地址 strinUrl:="http://localhost:8080/aaa"`这里写代码片` resopne,err:= http.PostForm(strinUrl,url.Values{"num":{"456"},"num1":{"123"}}) if err !=nil { fmt.Println("err=",err) } defer func() { resopne.Body.Close() fmt.Println("finish") }() body,err:=ioutil.ReadAll(resopne.Body) if err!=nil { fmt.Println(" post err=",err) } fmt.Println(string(body)) } func postFile(){ //这是一个Post 参数会被返回的地址 strinUrl:="http://localhost:8080/aaa" byte,err:=ioutil.ReadFile("post.txt") resopne,err :=http.Post(strinUrl,"multipart/form-data",bytes.NewReader(byte)) if err !=nil { fmt.Println("err=",err) } defer func() { resopne.Body.Close() fmt.Println("finish") }() body,err:=ioutil.ReadAll(resopne.Body) if err!=nil { fmt.Println(" post err=",err) } fmt.Println(string(body)) } |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com