问题描述
我正在尝试使用多部分表单将音频文件上传到Golang服务器.但是,Go返回错误:
I'm trying to upload an audio file to a Golang server using a multipart form. However, Go returns the error:
multipart: NextPart: bufio: buffer full
我认为这表明我的Javascript请求中存在多部分格式的错误.这是我的Javascript:
I believe this indicates there is something not in the multipart format with my Javascript request. This is my Javascript:
function UploadFile(file) {
var xhr = new XMLHttpRequest();
if (file.type == "audio/mpeg" && file.size <= $id("MAX_FILE_SIZE").value) {
// start upload
var boundary = '---------------------------' + Math.floor(Math.random()*32768) + Math.floor(Math.random()*32768) + Math.floor(Math.random()*32768);
xhr.open("POST", $id("upload").action, true);
xhr.setRequestHeader("Content-Type", "multipart/form-data; boundary=" + boundary);
xhr.setRequestHeader("X_FILENAME", file.name);
xhr.send(file);
}
}
这是我的Golang服务器处理程序:
And this is my Golang server handler:
func FileHandler(w http.ResponseWriter, r *http.Request) {
var (
status int
err error
)
defer func() {
if nil != err {
http.Error(w, err.Error(), status)
}
}()
// parse request with maximum memory of _24Kilobits
const _24K = (1 << 20) * 24
if err = r.ParseMultipartForm(_24K); nil != err {
fmt.Println(err)
status = http.StatusInternalServerError
return
}
for _, fheaders := range r.MultipartForm.File {
for _, hdr := range fheaders {
// open uploaded
var infile multipart.File
if infile, err = hdr.Open(); nil != err {
status = http.StatusInternalServerError
return
}
// open destination
var outfile *os.File
if outfile, err = os.Create("./uploaded/" + hdr.Filename); nil != err {
status = http.StatusInternalServerError
return
}
// 32K buffer copy
var written int64
if written, err = io.Copy(outfile, infile); nil != err {
status = http.StatusInternalServerError
return
}
w.Write([]byte("uploaded file:" + hdr.Filename + ";length:" + strconv.Itoa(int(written))))
}
}
}
如果有人对我为什么会收到此错误有任何想法,我将不胜感激.
If anyone has any ideas why I'm getting this error, I'd greatly appreciate it.
推荐答案
在与Ajax请求进行了漫长而艰苦的战斗之后,我得到了它发送正确的信息.这是我使用的代码:
After a long, arduous battle with the Ajax request, I got it to send the right information. Here's the code I used:
var xhr = new XMLHttpRequest(),
boundary=Math.random().toString().substr(2);
var formdata = new FormData();
formdata.append("file", file);
xhr.open("POST", $id("upload").action, true);
//xhr.setRequestHeader("content-type", "multipart/form-data; charset=utf-8; boundary=" + boundary);
xhr.send(formdata);
请注意,该标头不再使用,并且我发现您可以像这样的任何其他方法将数据附加到formdata上更加容易:
Note the header is no longer in use and I found you can attach data to formdata much easier than any other method such as this: How to send multipart/form-data form content by ajax (no jquery)?
这篇关于Ajax将文件上传到内容类型为多部分的GoLang Server的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!