Parse a file to a variable from request body golang

huangapple go评论82阅读模式
英文:

Parse a file to a variable from request body golang

问题

我正在为上传图像到MinIO服务器创建一个API,并且我需要在请求体中发送文件。然后,我需要获取该文件并将io.Reader类型的变量传递给一个函数,该函数将把文件添加到存储桶中。我不知道在请求体结构体中为这个字段放什么数据类型。有什么建议吗?

英文:

I'm creating an API for uploading images to MinIO server and I need to send files in the request body. Then I need to get the file and pass io.Reader type variable into a function that will add it to the bucket. I don't know what data type I have to put in the body struct for this field. Any suggestions?

答案1

得分: 0

好的,以下是翻译好的内容:

好的,我已经弄清楚了:

type Body struct {
    recipe_id string                `form:"recipe_id"`
    image     *multipart.FileHeader `form:"file"`
}

file_header, err := c.FormFile("file")
file, err := file_header.Open()
英文:

Okay, I actually figured it out:

type Body struct {
    recipe_id string                `form:"recipe_id"`
    image     *multipart.FileHeader `form:"file"`
}

file_header, err := c.FormFile("file")
file, err := file_header.Open()

huangapple
  • 本文由 发表于 2021年10月9日 00:09:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/69498818.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定