具有POST方法值的http新请求为空

时间:2019-03-28 15:15:49

标签: http go post

我将以下代码用于POST方法:

postData := url.Values{}
postData.Set("login_id", "test1")
postData.Set("api_key", "test2")

req, err := http.NewRequest("POST","http://example.com", strings.NewReader(postData.Encode()))

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
logger.Info(string(body))
os.Exit(3)

未设置值。当我检查以下内容时:logger.Info(req.PostFormValue("login_id"))有一个空白值。如何调试/解决此问题?

3 个答案:

答案 0 :(得分:3)

您需要用Content-Type指定请求的req.Header.Set("Content-Type", "application/x-www-form-urlencoded")

postData := url.Values{}
postData.Set("login_id", "test1")
postData.Set("api_key", "test2")

req, err := http.NewRequest("POST", "http://localhost:8080/", strings.NewReader(postData.Encode()))
if err != nil {
    panic(err)
}

req.Header.Set("content-type", "application/x-www-form-urlencoded")
fmt.Println(req.PostFormValue("login_id"))

https://play.golang.org/p/nVVe_p6P8ph

答案 1 :(得分:1)

  

当我检查以下内容时:logger.Info(req.PostFormValue("login_id"))有一个空白值。

当然可以。但这并不意味着不会发送这些值。

PostFormValue用于访问服务器 Request上的表单值,而不是客户端 Request上的表单值,就像您的{ {1}}。

答案 2 :(得分:0)

PostForm在下面。

package main

import (
    "io/ioutil"
    "net/http"
    "net/url"
)

func main() {
    resp, err := http.PostForm(URL, url.Values{"login_id": {"test1"}, "api_key": {"test2"}})
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()

    respBody, err := ioutil.ReadAll(resp.Body)
    if err == nil {
        str := string(respBody)
        println(str)
    }
}