代码拉取完成,页面将自动刷新
package http
import (
"bytes"
"mime/multipart"
"net/http"
)
func Upload(url string, filename string, headerFunc HeaderFunc) ([]byte, error) {
return UploadV2(url, &FileForm{Value: filename, Field: "file"}, headerFunc)
}
func UploadV2(url string, form Form, headerFunc HeaderFunc) ([]byte, error) {
var b bytes.Buffer
w := multipart.NewWriter(&b)
err := form.CreateForm(w)
if err != nil {
w.Close()
return nil, err
}
// need to close
w.Close()
hp := &Http{}
return hp.Do("POST", url, &b, func(h *http.Header) {
// Don't forget to set the content type, this will contain the boundary.
if headerFunc != nil {
headerFunc(h)
}
h.Set(KContentType, w.FormDataContentType())
})
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。