網路通訊5:執行HTTP的GET/POST請求
匯入依賴包
import (
"fmt"
"net/http"
"io/ioutil"
"strings"
)
提交GET請求並獲得返回
func main521() {
url := "http://www.baidu.com/s?wd=肉"
resp, err := http.Get(url)
if err != nil {
fmt.Println("錯誤")
}
defer resp.Body.Close()
bodyBytes, _ := ioutil.ReadAll(resp.Body) //讀取資訊
fmt.Println(string(bodyBytes)) //讀取網頁原始碼
}
提交POST請求並獲得返回
func main522() {
//url := "http://www.baidu.com"
url := "https://httpbin.org/post?name=張三"
resp, err := http.Post(
url,
"application/x-www-form-urlencoded",
strings.NewReader("id=nimei"))
if err != nil {
fmt.Println("錯誤")
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body) //讀取資訊
fmt.Println(string(body)) //讀取網頁原始碼
}
學院Go語言視訊主頁
https://edu.csdn.net/lecturer/1928
[清華團隊帶你實戰區塊鏈開發]
(https://ke.qq.com/course/344443?tuin=3d17195d)
掃碼獲取海量視訊及原始碼 QQ群:721929980
相關文章
- Java Http Get Post 請求工具類JavaHTTP
- http請求之get和post的區別HTTP
- http請求中get和post方法的區別HTTP
- Python中get、post請求詳解(HTTP請求頭、狀態碼)PythonHTTP
- 淺談HTTP中GET和POST請求方式的區別HTTP
- get請求和post請求的區別
- Http請求get與post請求方式的各種相關面試總結HTTP面試
- Android 傳送HTTP GET POST 請求以及通過 MultipartEntityBuilder 上傳檔案(二)AndroidHTTPUI
- get與post的請求區別
- uni-app的POST請求和GET請求APP
- POST與GET請求區別
- vue 發起get請求和post請求Vue
- Golang:使用go-resty/resty傳送http請求get和postGolangRESTHTTP
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- go對get、post請求封裝Go封裝
- java傳送GET和post請求Java
- get,post URL加字尾請求
- axios 發get,post 請求小結iOS
- HTTP GET請求傳bodyHTTP
- HTTP網路請求原理HTTP
- python傳送HTTP POST請求PythonHTTP
- 介面自動化測試框架--http請求的get、post方法的實現框架HTTP
- get和post請求的區別(面試)面試
- ajax的post或者get伺服器請求伺服器
- Vue中通過Axios向SpringBoot傳送get和post請求VueiOSSpring Boot
- file_get_contents傳送post請求
- 介面請求(get、post、head等)詳解
- 介面請求 (get、post、head 等) 詳解
- httprequest- post- get -傳送請求HTTP
- Linux curl 命令模擬 POST/GET 請求Linux
- SQL Server儲存過程模擬HTTP請求POST和GET協議SQLServer儲存過程HTTP協議
- vue axios資料請求get、post方法的使用VueiOS
- 網路通訊5:HTTP下載器HTTP
- SpringBoot專案的html頁面使用axios進行get post請求Spring BootHTMLiOS
- 基於Microsoft visual c++ 6.0實現客戶端HTTP的Get、Post請求ROSC++客戶端HTTP
- RestTemplate exchange GET POST請求傳引數DEMOREST
- 優雅地使用GET和POST請求方法
- postman(二):使用postman傳送get or post請求Postman