当尝试使用 Mux 和 net/http 在 Golang 中实现简单的文件上传端点时,检索来自请求正文的文件数据可能会带来挑战。以下解决方案解决了此问题:
import ( "bytes" "fmt" "io" "net/http" "strings" ) func ReceiveFile(w http.ResponseWriter, r *http.Request) { r.ParseMultipartForm(32 << 20) // limit your max input length! var buf bytes.Buffer file, header, err := r.FormFile("file") // replace "file" with the expected form field name if err != nil { panic(err) } defer file.Close() name := strings.Split(header.Filename, ".") fmt.Printf("File name %s\n", name[0]) io.Copy(&buf, file) contents := buf.String() fmt.Println(contents) buf.Reset() return }
此函数:
以上是如何在 Golang net/http 服务器中处理文件上传?的详细内容。更多信息请关注PHP中文网其他相关文章!