它似乎沒有像Beego有一個方便的方法來上傳多個文件。 GetFile()僅包含標準庫中的FromFile()。您可能想要使用標準庫的閱讀器功能:r.MultipartReader()。
在這樣的情況下,我一般是通過調用暴露從控制器的響應讀寫器:
w = this.Ctx.ResponseWriter
r = this.Ctx.ResponseReader
現在我可以使用net/HTTP包中的標準方法和實施方案外到框架。
在Go上快速搜索上傳多個文件會將我引導至blog post。
在保護這個答案從鏈接腐爛的利益,這裏是作者的解決方案:
func uploadHandler(w http.ResponseWriter, r *http.Request) {
switch r.Method {
//GET displays the upload form.
case "GET":
display(w, "upload", nil)
//POST takes the uploaded file(s) and saves it to disk.
case "POST":
//get the multipart reader for the request.
reader, err := r.MultipartReader()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
//copy each part to destination.
for {
part, err := reader.NextPart()
if err == io.EOF {
break
}
//if part.FileName() is empty, skip this iteration.
if part.FileName() == "" {
continue
}
dst, err := os.Create("/home/sanat/" + part.FileName())
defer dst.Close()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if _, err := io.Copy(dst, part); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
//display success message.
display(w, "upload", "Upload successful.")
default:
w.WriteHeader(http.StatusMethodNotAllowed)
}
}
如何添加圖片,就像我們在網站上看到的一樣。顯示添加圖像的圖標。 – 2015-06-09 06:50:41
使用r = this.Ctx.Request代替r = this.Ctx.ResponseReader – 2016-04-19 14:16:30