首頁 > 後端開發 > Golang > 使用 Go 的 POST 請求上傳檔案時如何修復「錯誤請求:請求中沒有照片」錯誤?

使用 Go 的 POST 請求上傳檔案時如何修復「錯誤請求:請求中沒有照片」錯誤?

DDD
發布: 2024-11-03 04:13:30
原創
269 人瀏覽過

How to Fix

在 Go 中使用 POST 請求上傳檔案

在 Go 中,您可以使用 HTTP POST 要求將檔案上傳到遠端伺服器。使用 Telegram 的 bot API 時,您可能會遇到錯誤訊息,指出「錯誤請求:請求中沒有照片」。這表示文件資料未正確包含在請求中。

要解決此問題,您需要將 POST 請求格式化為 multipart/form-data 請求。這允許您在同一請求中包含文字參數和二進位檔案資料。以下是程式碼的更新版本,其中包含所需的修改:

<code class="go">import (
    "bytes"
    "io"
    "mime/multipart"
    "net/http"
    "path/filepath"
)

// content is a struct which contains a file's name, its type and its data.
type content struct {
    fname string
    ftype string
    fdata []byte
}

func sendPostRequest(url string, files ...content) ([]byte, error) {
    var (
        buf = new(bytes.Buffer)
        w   = multipart.NewWriter(buf)
    )

    for _, f := range files {
        part, err := w.CreateFormFile(f.ftype, filepath.Base(f.fname))
        if err != nil {
            return []byte{}, err
        }

        _, err = part.Write(f.fdata)
        if err != nil {
            return []byte{}, err
        }
    }

    err := w.Close()
    if err != nil {
        return []byte{}, err
    }

    req, err := http.NewRequest("POST", url, buf)
    if err != nil {
        return []byte{}, err
    }
    req.Header.Add("Content-Type", w.FormDataContentType())

    client := &http.Client{}
    res, err := client.Do(req)
    if err != nil {
        return []byte{}, err
    }
    defer res.Body.Close()

    cnt, err := io.ReadAll(res.Body)
    if err != nil {
        return []byte{}, err
    }
    return cnt, nil
}</code>
登入後複製

此更新的程式碼:

  • 建立一個multipart.Writer 來建構multipart/form-data 請求。
  • 使用 CreateFormFile 將每個檔案新增至請求。
  • 關閉多部分寫入器完成請求建構。
  • 將內容類型標頭設定為 multipart/form-data。
  • 發送請求並從 Telegram 檢索回應。

以上是使用 Go 的 POST 請求上傳檔案時如何修復「錯誤請求:請求中沒有照片」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板