如何在 golang 中从客户端接收 multipart?

How to Receive multipart from the client in golang?

这是我的代码和输出:

func RestClient(req *http.Request) {
        fmt.Println("main (120):::", req.MultipartForm.File)
}

main (120)::: &{map[userName:[0xc4200a66e0] diamond:[0xc4200f67b0] ]}

for k,v := range req.MultipartForm.File{
              if k == "userName" {
                for _, v2 := range v {
                    fmt.Println("main (130):::",v2)
                } 
              }     
           }
 > main (130)::: &{ map[Content-Length:[8]
    > Content-Disposition:[form-data; name="dk"]
    > Content-Transfer-Encoding:[binary] Content-Type:[multipart/form-data;
    > charset=utf-8]] 8 [117 115 101 114 78 97 109 101] }

我想要 (slice byte [117 115 101 114 78 97 109 101]) 但无法提取,如何打印 (content []byte),正如我们从 FileHeader 结构中知道的字段:

type FileHeader struct {
    Filename string
    Header   textproto.MIMEHeader
    Size     int64

    content []byte
    tmpfile string
}

提前致谢。

呼叫FileHeader.Open, which returns a multipart.File:

type File interface {
        io.Reader
        io.ReaderAt
        io.Seeker
        io.Closer
}

你如何处理这个文件取决于你想对内容做什么。 ioutil.ReadAll是一个选项,但通常留下它as-is并使用io.Copy将内容写入另一个io.Writer更方便。阅读完后别忘了调用 Close。