golang NewRequest/gorequest实现http请求的示例代码
作者:我的猫叫土豆 时间:2024-04-30 10:03:26
通过go语言实现http请求
http.Post
import (
?? ?"net/http"
?? ?"net/url"
)
data := url.Values{"start":{"100"}, "hobby":{"xxxx"}}
body := strings.NewReader(data.Encode())
resp, err := http.Post("127.0.0.1:9338", "application/x-www-form-urlencoded", body)
net/http包没有封装直接使用请求带header的get或者post方法,所以,要想请求中带header,只能使用NewRequest方法
http.NewRequest
客户端:
import (
?? ?"net/http"
?? ?"json"
?? ?"ioutil"
)
type Student struct{
?? ?id string
?? ?name string
}
type StudentReq struct{
?? ?id string
?? ?name string
}
func main() {
?? ?stu := Student{
?? ??? ?id:"2ed4tg5fe35fgty3yy6uh",
?? ??? ?name:"amber",
?? ?}
?? ?stu,err := json.Marshal(&stu)
?? ?reader := bytes.NewReader(stu)
?? ?request,err := http.NewRequest("POST", "http://192.168.1.12:8000/create", reader)
?? ?request.Header.Set("Content-Type", "application/json")
?? ?client:=&http.Client{}
?? ?response,err := client.Do(request)
?? ?defer response.Body.Close()
?? ?body,err := ioutil.ReadAll(response.Body)
?? ?fmt.Printf(string(body))
?? ?
?? ?var stuReq StudentReq?
?? ?err = json.UnMarshal(body, &stuReq)
?? ?fmt.Println(json.MarshalIndent(stuReq))
}
解析:
stu,err := json.Marshal(&stu):将stu对象改为json格式
reader := bytes.NewReader(stu):所以将json改为byte格式,作为body传给http请求
request,err := http.NewRequest(“POST”, “http://192.168.1.12:8000/create”, reader):创建url
response,err := client.Do(request):客户端发起请求,接收返回值
body,err := ioutil.ReadAll(response.Body):读取body的值,类型是byte
json.MarshalIndent(stuReq):修改json为标准格式
注意(坑):
1、header里的参数是Content-Type,不要写成ContentType
2、【go http: read on closed response body 】如果发送的请求是分为2个func写的,记住defer要在ioutil.ReadAll之后执行,否则报错
gorequest
这种方式适合在url里拼接参数使用param直接传递
"github.com/parnurzeal/gorequest"
func main() {
?? ?resp, body, errs := gorequest.New().Post("http://127.0.0.1/create").Param("ip", "192.168.1.4").EndBytes()
?? ??? ?if errs != nil || resp.StatusCode >= 300 {
?? ??? ??? ?log.Errorf("fail to call api with errors %v, %+v", errs, body)
?? ??? ?}
?? ?var stuReq StudentReq?
?? ?err = json.UnMarshal(body, &stuReq)
?? ?fmt.Println(json.MarshalIndent(stuReq))
}
来源:https://blog.csdn.net/ambzheng/article/details/104483754
标签:golang,http,请求
0
投稿
猜你喜欢
Python打造虎年祝福神器的示例代码
2021-01-08 17:23:43
自己写的Javascript计算时间差函数
2024-04-16 08:54:57
MySQL可视化工具Navicat的连接方法
2024-01-14 11:43:48
完美的js验证网址url(正则表达式)
2008-06-07 09:36:00
Python遗传算法Geatpy工具箱使用介绍
2021-11-02 02:21:16
Python用GET方法上传文件
2022-08-03 01:13:59
python3让print输出不换行的方法
2021-02-16 20:48:33
Go语言文件开关及读写操作示例
2023-08-05 19:47:27
分享JavaScript与Java中MD5使用两个例子
2024-05-22 10:40:17
JS中from 表单序列化提交的代码
2023-09-09 22:54:01
keras 解决加载lstm+crf模型出错的问题
2022-06-11 01:27:27
sqlserver 中时间为空的处理小结
2024-01-13 06:07:40
SqlServer 2005 T-SQL Query 学习笔记(4)
2024-01-26 07:44:06
JS判断鼠标从什么方向进入一个容器实例说明
2024-04-28 09:48:35
Python jieba结巴分词原理及用法解析
2023-08-29 17:43:36
Python的Django应用程序解决AJAX跨域访问问题的方法
2023-08-07 16:00:24
Python中urllib+urllib2+cookielib模块编写爬虫实战
2023-10-21 19:02:35
利用Go语言实现Raft日志同步
2024-03-15 02:55:20
python如何往列表头部和尾部添加元素
2021-12-17 07:05:17
Python学习之线程池与GIL全局锁详解
2021-10-09 21:55:18