gin获取post请求的jsonbody操作
我就废话不多说了,⼤家还是直接看代码吧~
代码如下
type KDRespBody struct {
Errcode int `json:"errcode"`
Desc string `json:"description"`
Data []services.KdSearchBack `json:"data"`
}
var reqInfo KDRespBody
err := c.BindJSON(&reqInfo)
if err != nil {
log.Info(err)
c.JSON(200, gin.H{"errcode": 400, "description": "Post Data Err"})
return
} else {
fmt.Println(reqInfo.Data)
}
补充:使⽤gin接受post的json数据
第⼀种
func Login(c *gin.Context) {
json := make(map[string]interface{}) //注意该结构接受的内容
c.BindJSON(&json)
log.Printf("%v",&json)
c.JSON(http.StatusOK, gin.H{
"name": json["name"],
"password": json["password"],
})
}
第⼆种
type User struct {
Name string `json:"name"`
Password int64 `json:"password"`
}
func Login(c *gin.Context) {
json := User{}
c.BindJSON(&json)
json值的类型有哪些log.Printf("%v",&json)
c.JSON(http.StatusOK, gin.H{
"name": json.Name,
"password": json.Password,
})
}
补充:golang json数据解析错误情况
byte数组接收⽹络数据完⽹络数据后,需要根据接收到的长度进⾏重新分⽚,才能被json进⾏解析,不然会报错。 for {
len1, err := resp.Body.Read(data)
if len1 > 0 {
data1 := data[:len1] //需要根据接收到的长度进⾏重新分⽚
err1 := json.Unmarshal(data1, rec_rep)
if err1 != nil {
fmt.Println("json.Unmarshal failed")
}
}
if err != nil {
break
}
}
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。如有错误或未考虑完全的地⽅,望不吝赐教。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论