在我的使用案例中,我試圖上傳一個文件到golang的服務器。我有以下的HTML代碼,golang文件上傳失敗
<div class="form-input upload-file" enctype="multipart/form-data" >
<input type="file"name="file" id="file" />
<input type="hidden"name="token" value="{{.}}" />
<a href="/uploadfile/" data-toggle="tooltip" title="upload">
<input type="button upload-video" class="btn btn-primary btn-filled btn-xs" value="upload" />
</a>
</div>
而在服務器端,
func uploadHandler(w http.ResponseWriter, r *http.Request) {
// the FormFile function takes in the POST input id file
file, header, err := r.FormFile("file")
if err != nil {
fmt.Fprintln(w, err)
return
}
defer file.Close()
out, err := os.Create("/tmp/uploadedfile")
if err != nil {
fmt.Fprintf(w, "Unable to create the file for writing. Check your write access privilege")
return
}
defer out.Close()
// write the content from POST to the file
_, err = io.Copy(out, file)
if err != nil {
fmt.Fprintln(w, err)
}
fmt.Fprintf(w, "File uploaded successfully : ")
fmt.Fprintf(w, header.Filename)
}
當我嘗試上傳的文件,我得到在服務器端request Content-Type isn't multipart/form-data
錯誤。
任何人都可以幫助我嗎?
謝謝。我試圖在另一種形式中使用這個。所以我嘗試了這種方式。有沒有任何工作可以在另一個表單中使用它?這將是非常有幫助 – Dany
@DineshAppavoo窗體內部窗體? –
看起來不可能[nest-forms](http://stackoverflow.com/questions/379610/can-you-nest-html-forms)。我試過了,原始形式正在崩潰。有沒有解決方法? – Dany