2021
03-16
03-16
gin 获取post请求的json body操作
我就废话不多说了,大家还是直接看代码吧~代码如下typeKDRespBodystruct{Errcodeint`json:"errcode"`Descstring`json:"description"`Data[]services.KdSearchBack`json:"data"`}varreqInfoKDRespBodyerr:=c.BindJSON(&reqInfo)iferr!=nil{log.Info(err)c.JSON(200,gin.H{"errcode":400,"description":"PostDataErr"})return}else{fmt.Println(reqInfo.Data)}补充:使用gin接受post的...
继续阅读 >