1 回答
TA贡献1796条经验 获得超4个赞
你不能只是通过这样的。您需要实际读取文件,构建MIME多部分请求正文(请参阅规范)并在POST请求中发送它。os.File
buf := &bytes.Buffer{}
w := multipart.NewWriter(...)
// add other required fields (operations, map) here
// load file (you can do these directly I am emphasizing them
// as variables so code below is more understandable
fileKey := "0" // file key in 'map'
fileName := "file.xslx" // file name
fileContentType := "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
fileContents, err := ioutil.ReadFile("./file.xlsx")
// ...
// make multipart body
h := make(textproto.MIMEHeader)
h.Set("Content-Disposition", fmt.Sprintf(`form-data; name="%s"; filename="%s"`, fileKey, fileName))
h.Set("Content-Type", fileContentType)
ff, err := bodyWriter.CreatePart(h)
// ...
_, err = ff.Write(fileContents)
// ...
err = bodyWriter.Close()
// ...
req, err := http.NewRequest("POST", fmt.Sprintf("https://endpoint"), buf)
//...
这里有一个很好的工作示例,可以在存储库本身中执行此操作:example/fileupload/fileupload_test.go。gqlgen
在该示例中,每个文件都被加载到(并由其表示)在我链接的行上定义的结构类型中,这可能会使它在第一眼时有点混乱。file
- 1 回答
- 0 关注
- 134 浏览
添加回答
举报