當嘗試使用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中文網其他相關文章!