<strong>// 簡(jiǎn)單直接的GET請(qǐng)求</strong>
func httpGet() {
resp, err := http.Get("http://www.baidu.com")
if err != nil {
// handle error
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
// handle error
}
fmt.Println(string(body))
}
<strong>// POST請(qǐng)求 -- 使用http.Post()方法</strong>
func httpPost() {
resp, err := http.Post("http://www.baidu.com",
"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ù)無法傳遞。
<strong>// POST請(qǐng)求 -- 使用http.PostForm()方法</strong>
func httpPostForm() {
resp, err := http.PostForm("http://www.baidu.com",
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))
}
<strong>// 復(fù)雜的請(qǐng)求(設(shè)置頭參數(shù)、cookie之類的數(shù)據(jù)),可以使用http.Client的Do()方法</strong>
func httpDo() {
client := &http.Client{}
req, err := http.NewRequest("POST", "http://www.baidu.com", 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))
}http://studygolang.com/articles/2355



