這篇文章給大家介紹Golang中怎么自建一個HTTP中間件,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
成都創(chuàng)新互聯(lián)公司主要從事網(wǎng)站設(shè)計、做網(wǎng)站、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)樂至,十年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108
自建Http中間件
* 以類型形式 * 以函數(shù)形式 * 追加響應(yīng)內(nèi)容 * 自定義響應(yīng)
以類型形式:
package main import ( "net/http" ) type SingleHost struct { handler http.Handler allowedHost string } func (this *SingleHost) ServeHTTP(w http.ResponseWriter, r *http.Request) { if r.Host == this.allowedHost { this.handler.ServeHTTP(w, r) } else { w.WriteHeader(403) } } func myHandler(w http.ResponseWriter, r *http.Request) { w.Write([]byte("hello world!")) } func main() { single := &SingleHost{ handler: http.HandlerFunc(myHandler), allowedHost: "baidu.com", } http.ListenAndServe(":8080", single) }
以函數(shù)形式:
package main import ( "net/http" ) func SingleHost(handler http.Handler, allowedHost string) http.Handler { fn := func(w http.ResponseWriter, r *http.Request) { if r.Host == r.allowedHost { handler.ServeHTTP(w, r) } else { w.WriteHeader(403) } } return http.HandlerFunc(fn) } func myHandler(w http.ResponseWriter,r *http.Request){ w.Write([]byte("hello world!")) } func main(){ single:=SingleHost(http.HandlerFunc(myHandler),"localhost:8080") http.ListenAndServe(":8080",single) }
自定義響應(yīng): net/http/httptest:響應(yīng)請求時先進記錄,不直接響應(yīng)客戶端,在完全自定義時,還沒準備好響應(yīng)給客戶端,先將請求虛擬記錄下來,沒有真正的相應(yīng)出去,都在一個記錄過程當中,在完全處理完后,在將響應(yīng)一整套的響應(yīng)給客戶。
package main //追加響應(yīng),傳入handler 提示經(jīng)過中間件處理 import ( "net/http" ) type AppendHiddleware struct{ handler http.Handler } func (this *AppendHiddleware)ServeHTTP(w http.ResponseWriter,r *http.Request){ if r.Host=="ccc"{ this.handler.ServeHTTP(w,r) w.Write([]byte("Hey,this is middleware")) }else{ w.Write([]byte("no host")) } } func myHandle(w http.ResponseWriter,r *http.Request){ w.Write([]byte("hello myHandle!")) } func main(){ mid:=&AppendHiddleware{http.HandlerFunc(myHandle)} http.ListenAndServe(":8080",mid) }
關(guān)于Golang中怎么自建一個HTTP中間件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
文章題目:Golang中怎么自建一個HTTP中間件
當前地址:http://muchs.cn/article10/jcphgo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、App開發(fā)、網(wǎng)站維護、網(wǎng)站策劃、、軟件開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)