您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關go語言中http的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、net/http 包提供的 http.ListenAndServe() 方法,在指定的地址監聽
該方法用于在指定的 TCP 網絡地址 addr 進行監聽,然后調用服務端處理程序來處理傳入的連 接請求。該方法有兩個參數:第一個參數 addr 即監聽地址;第二個參數表示服務端處理程序, 通常為空,這意味著服務端調用 http.DefaultServeMux 進行處理,而服務端編寫的業務邏 輯處理程序 http.Handle() 或 http.HandleFunc() 默認注入 http.DefaultServeMux 中。
2.處理https請求
func ListenAndServeTLS(addr string, certFile string, keyFile string, handler Handler) error
3.路由
http.HandleFunc()方法接受兩個參數
第一個參數是HTTP請求的 目標路徑"/hello",該參數值可以是字符串,也可以是字符串形式的正則表達式
第二個參數指定具體的回調方法,比如helloHandler。
當我們的程序運行起來后,訪問http://localhost:8080/hello , 程序就會去調用helloHandler()方法中的業務邏輯程序。
4.get/post訪問
resp, err := http.Get("...") defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) fmt.Println(string(body))
resp, err:=http.Post(“.....”, ”application/x-www-form-urlencoded”, strings.NewReader(“..=...”)) defer resp.Body.Close() body,err:=ioutil.ReadAll(resp.Body) fmt.Println(string(body))
package main import ( "fmt" "io/ioutil" "net/http" "strings" ) func main() { //模擬一個post提交請求 resp, err := http.Post("http://www.baidu.com", "application/x-www-form-urlencoded", strings.NewReader("id=1")) if err != nil { panic(err) } //關閉連接 defer resp.Body.Close() //讀取報文中所有內容 body, err := ioutil.ReadAll(resp.Body) //輸出內容 fmt.Println(string(body)) }
模擬一個http server 監聽地址:127.0.0.1:8080
// http_server.go package main import ( //"fmt" "net/http" ) func main() { http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("hello world!")) }) http.ListenAndServe("127.0.0.1:8080", nil) }
關于“go語言中http的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。