主页 > 知识库 > 解决golang读取http的body时遇到的坑

解决golang读取http的body时遇到的坑

热门标签:百度竞价排名 铁路电话系统 Linux服务器 服务外包 地方门户网站 呼叫中心市场需求 网站排名优化 AI电销

当服务端对http的body进行解析到map[string]interface{}时,会出现cli传递的是int类型,而服务端只能断言成float64,而不能将接收到的本该是int类型的直接断言为int

cli

func main(){
 url:="http://127.0.0.1:8335/api/v2/submit"
 myReq:= struct {
 ProductId  int  `json:"product_id"`
 Mobile   string `json:"mobile"`
 Content  string  `json:"content"`
 Grade  float64 `form:"grade" json:"grade"`
 Image  string `form:"image" json:"image"`
  Longitude  float64    `json:"longitude"`
 Latitude  float64   `json:"latitude"`
 }{
 ProductId:219,
 Mobile:"15911111111",
 Content: "这个软件LOGO真丑",
 Image: "www.picture.com;www.picture.com",
 Longitude: 106.3037109375,
 Latitude: 38.5137882595,
 Grade:9.9,
 }
 reqByte,err:=json.Marshal(myReq)
 req, err := http.NewRequest("POST", url, bytes.NewReader(reqByte))
 if err != nil {
 return
 }
 //设置请求头
 req.Header.Add("Content-Type", "application/json")
 cli := http.Client{
 Timeout: 45 * time.Second,
 }
 resp, err := cli.Do(req)
 if err != nil {
 return
 }
 out, err := ioutil.ReadAll(resp.Body)
 if err != nil {
 return
 }
 fmt.Println(string(out))
}

server

func SubmitV2(c *gin.Context) {
 resp := dto.Response{}
 obj:=make(map[string]interface{})
 var buf []byte
 var err error
 buf, err =ioutil.ReadAll(c. Request.Body)
 if err!=nil {
 return
 }
 err=json.Unmarshal(buf,obj)
 if err!=nil {
 return
 }
 fmt.Println("product_id:",reflect.TypeOf(obj["product_id"]))
 fmt.Println("image:",reflect.TypeOf(obj["image"]))
 fmt.Println(obj)
 productId:=obj["product_id"].(float64)
 //注意,这里断言成int类型会出错
 c.Request.Body = ioutil.NopCloser(bytes.NewBuffer(buf))
 if !checkProduct(int(productId)){
 resp.Code = -1
 resp.Message = "xxxxxx"
 c.JSON(http.StatusOK, resp)
 return
 }
 url := config.Optional.OpinionHost + "/api/v1/submit"
 err = http_utils.PostAndUnmarshal(url, c.Request.Body, nil, resp)
 if err != nil {
 logrus.WithError(err).Errorln("Submit: error")
 resp.Code = -1
 resp.Message = "Submit"
 }
 c.JSON(http.StatusOK, resp)
}

打印类型,发现product_id是float64类型

原因:json中的数字类型没有对应int,解析出来都是float64

补充:Golang Web 获取 http 请求报文主体 body 的内容

示例代码:

package main
import (
 "fmt"
 "net/http"
)
func headerBody(rw http.ResponseWriter, r *http.Request) {
 // 获取请求报文的内容长度
 len := r.ContentLength
 // 新建一个字节切片,长度与请求报文的内容长度相同
 body := make([]byte, len)
 // 读取 r 的请求主体,并将具体内容读入 body 中
 r.Body.Read(body)
 // 将字节切片内容写入相应报文
 fmt.Fprintln(rw, body)
}
func main() {
 server := http.Server{
 Addr: "127.0.0.1:http",
 }
 http.HandleFunc("/", headerBody)
 server.ListenAndServe()
}

注意:

1. get 请求不包含报文主体。

2. post 请求不包含报文主体。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

您可能感兴趣的文章:
  • 在Golang中使用http.FileServer返回静态文件的操作
  • 解决golang http.FileServer 遇到的坑
  • golang HTTP 服务器 处理 日志/Stream流的操作
  • golang http请求封装代码
  • 解决golang处理http response碰到的问题和需要注意的点
  • Golang 实现分片读取http超大文件流和并发控制

标签:兰州 黄山 湘潭 湖南 衡水 仙桃 铜川 崇左

巨人网络通讯声明:本文标题《解决golang读取http的body时遇到的坑》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266