golang要請(qǐng)求遠(yuǎn)程網(wǎng)頁(yè),可以使用net/http包中的client提供的方法實(shí)現(xiàn)。查看了官方網(wǎng)站有一些示例,沒有太全面的例子,于是自己整理了一下:
get請(qǐng)求
func httpGet() {
resp, err := http.Get("http://www.01happy.com/demo/accept.php?id=1")
if err != nil {
// handle error
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle error
}
fmt.Println(string(body))
}
post請(qǐng)求
http.Post方式
func httpPost() {
resp, err := http.Post("http://www.01happy.com/demo/accept.php",
"application/x-www-form-urlencoded",
strings.NewReader("name=cjb"))
if err != nil {
fmt.Println(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle error
}
fmt.Println(string(body))
}
Tips:使用這個(gè)方法的話,第二個(gè)參數(shù)要設(shè)置成”application/x-www-form-urlencoded”,否則post參數(shù)無(wú)法傳遞。
http.PostForm方法
func httpPostForm() {
resp, err := http.PostForm("http://www.01happy.com/demo/accept.php",
url.Values{"key": {"Value"}, "id": {"123"}})
if err != nil {
// handle error
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle error
}
fmt.Println(string(body))
}
復(fù)雜的請(qǐng)求
有時(shí)需要在請(qǐng)求的時(shí)候設(shè)置頭參數(shù)、cookie之類的數(shù)據(jù),就可以使用http.Do方法。
func httpDo() {
client := http.Client{}
req, err := http.NewRequest("POST", "http://www.01happy.com/demo/accept.php", strings.NewReader("name=cjb"))
if err != nil {
// handle error
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("Cookie", "name=anny")
resp, err := client.Do(req)
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle error
}
fmt.Println(string(body))
}
同上面的post請(qǐng)求,必須要設(shè)定Content-Type為application/x-www-form-urlencoded,post參數(shù)才可正常傳遞。
如果要發(fā)起head請(qǐng)求可以直接使用http client的head方法,比較簡(jiǎn)單,這里就不再說明。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- golang http請(qǐng)求封裝代碼
- Golang發(fā)送http GET請(qǐng)求的示例代碼
- 詳解golang開發(fā)中http請(qǐng)求redirect的問題
- 詳解golang中發(fā)送http請(qǐng)求的幾種常見情況
- golang編程入門之http請(qǐng)求天氣實(shí)例
- golang高性能的http請(qǐng)求 fasthttp詳解