我将以下代码用于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"))
有一个空白值。如何调试/解决此问题?
答案 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"))
答案 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)
}
}