欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-24 17:06:45
当服务端对http的body进行解析到map[string]interface{}时,会出现cli传递的是int类型,而服务端只能断言成float64,而不能将接收到的本该是int类型的直接断言为in...

当服务端对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 body