代碼實(shí)例:
package main
import (
"bytes"
"io"
"io/ioutil"
"mime/multipart"
"net/http"
"os"
)
func main() {
form := formData{
// 提交的URL
url: `http://www.reibang.com/u/e8934b1c83c3`,
// 非資源的字段和數(shù)據(jù)
data: []Data{
{key: `Author`, value: `海東總司`},
{key: `Time`, value: `2019-11-11 18:36:13`},
},
// 資源的字段和數(shù)據(jù)
resource: Resource{
key: `UpdateFile`, value: `測(cè)試.txt`,
},
}
// 發(fā)送請(qǐng)求灭忠,返回請(qǐng)求結(jié)果
result := updateFile(form)
println(result)
}
type formData struct {
url string
data []Data
resource Resource
}
type Data struct {
key string
value string
}
type Resource struct {
key string
value string
}
// 上傳文件
// 參數(shù):表單數(shù)據(jù)
func updateFile(form formData) string {
// 創(chuàng)建表單
bodyBuf := &bytes.Buffer{}
bodyWriter := multipart.NewWriter(bodyBuf)
// 表單中的字段和數(shù)據(jù)(非資源文件)
for _, v := range form.data {
bodyWriter.WriteField(v.key, v.value)
}
// 表單中的字段和數(shù)據(jù)(資源文件)
fileWriter, err := bodyWriter.CreateFormFile(form.resource.key, form.resource.value)
panicErr(err)
// 獲取文件
fh, err := os.Open(form.resource.value)
panicErr(err)
defer fh.Close()
// 復(fù)制到表單中
_, err = io.Copy(fileWriter, fh)
panicErr(err)
// 獲取表單的 ContentType
contentType := bodyWriter.FormDataContentType()
bodyWriter.Close()
// 發(fā)送表單數(shù)據(jù)
resp, err := http.Post(form.url, contentType, bodyBuf)
resp_body, err := ioutil.ReadAll(resp.Body)
panicErr(err)
defer resp.Body.Close()
return string(resp_body)
}
// 統(tǒng)一處理錯(cuò)誤函數(shù)
func panicErr(err error) {
if err != nil {
panic(err)
}
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者