标签:foo nan 路由器 href dir 接口 ali https 文本
net/http 包涵盖了与 HTTP 请求发送和处理的相关代码。虽然包中定义了大量类型、函数,但最重要、最基础的概念只有两个:ServeMux 和 Handler。
ServeMux 是 HTTP 请求多路复用器(即路由器,HTTP request router),记录着请求路由表。对于每一个到来的请求,它都会比较请求路径和路由表中定义的 URL 路径,并调用指定的 handler 来处理请求。
Handler 的任务是返回一个 response 消息,并把 header 和 body 写入消息中。任何对象只要实现了 http.Handler 接口的接口方法 ServeHTTP 就可以成为 handler。ServeHTTP 的方法签名是:ServeHTTP(ResponseWriter, *Request)。
我们先通过以下代码,快速了解它们的功能:
package main
import (
"io"
"log"
"net/http"
)
type myHandler struct{}
func (h *myHandler) ServeHTTP(w http.ResponseWriter, _ *http.Request) {
io.WriteString(w, "Hello world!\n")
}
func main() {
mux := http.NewServeMux()
h := new(myHandler)
mux.Handle("/foo", h)
log.Println("Listening...")
http.ListenAndServe(":3000", mux)
}
代码拆解如下:
掌握了这两个概念,基本上其他概念 比如 Server,Client 类型、HandleFunc 函数作为 handler 等, 就都很好理解了。另外, 如果你对包中 HTTP 相关的概念不是很清楚的话,比如 TCP keep-alive、proxy、redirect、cookie、TLS,建议阅读《 HTTP: The Definitive Guide 》补充知识。
参考文献:A Recap of Request Handling in Go
标签:foo nan 路由器 href dir 接口 ali https 文本
原文地址:https://www.cnblogs.com/guangze/p/11409999.html