doxzrb8721 2019-08-21 10:16
浏览 385
已采纳

如何在Go中发送带有图片和某些参数的http发布请求?

I am trying to make an http post request with image and parameters in the form-data, but when I am adding image, my parameters are lost.

testProduct := &Product{
    Name: "TestProductName",
    ImageExtension: "png",
}

var b bytes.Buffer
multipartWriter := multipart.NewWriter(&b)
multipartWriter.CreateFormFile("image", "../test.png")
multipartWriter.Close()

form = url.Values{}
form.Add("name", testProduct.Name)
form.Add("image_extension", testProduct.ImageExtension)

req, _ := http.NewRequest(http.MethodPost, "api/v1/admin/products/", &b)

req.PostForm = form
req.Header.Add("Authorization", "Bearer "+loginResponse.Token)
req.Header.Set("Content-Type", multipartWriter.FormDataContentType())

recorder := httptest.NewRecorder()
router.ServeHTTP(recorder, req)

But when the request handled the parameters doesn't bind: https://i.imgur.com/JmT4qLh.png

This is the product struct:

type Product struct {
    ID             string `form:"id" json:"id"`
    Name           string `form:"name" json:"name"`
    Price          int64  `form:"price" json:"price"`
    ImageExtension string `form:"image_extension" json:"image_extension"`
}
  • 写回答

1条回答 默认 最新

  • duanlv5084 2019-08-21 11:45
    关注
        testProduct := &Product{
        Name:           "TestProductName",
        ImageExtension: "png",
    }
    
    pr, pw := io.Pipe()
    form := multipart.NewWriter(pw)
    
    go func() {
        defer pw.Close()
    
        err := form.WriteField("name", testProduct.Name)
        if err != nil {
            return
        }
    
        err = form.WriteField("image_extension", testProduct.ImageExtension)
    
        file, err := os.Open("a.png") // path to image file
        if err != nil {
            return
        }
    
        w, err := form.CreateFormFile("image", "sampleImageFileName.png")
        if err != nil {
            return
        }
    
        _, err = io.Copy(w, file)
        if err != nil {
            return
        }
    
        form.Close()
    }()
    
    r, err := http.NewRequest(http.MethodPost, "api/v1/admin/products/", pr)
    if err != nil {
        return
    }
    r.Header.Set("Content-Type", form.FormDataContentType())
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。
  • ¥20 CST怎么把天线放在座椅环境中并仿真
  • ¥15 任务A:大数据平台搭建(容器环境)怎么做呢?
  • ¥15 YOLOv8obb获取边框坐标时报错AttributeError: 'NoneType' object has no attribute 'xywhr'