英文:
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()
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论