HTTP Servers->HTTP 服务端
#
// 使用 `net/http` 包,我们可以轻松实现一个简单的 HTTP 服务器。
package main
import (
"fmt"
"net/http"
)
// *handlers* 是 `net/http` 服务器里面的一个基本概念。
// handler 对象实现了 `http.Handler` 接口。
// 编写 handler 的常见方法是,在具有适当签名的函数上使用 `http.HandlerFunc` 适配器。
func hello(w http.ResponseWriter, req *http.Request) {
// handler 函数有两个参数,`http.ResponseWriter` 和 `http.Request`。
// response writer 被用于写入 HTTP 响应数据,这里我们简单的返回 "hello\n"。
fmt.Fprintf(w, "hello\n")
}
func headers(w http.ResponseWriter, req *http.Request) {
// 这个 handler 稍微复杂一点,
// 我们需要读取的 HTTP 请求 header 中的所有内容,并将他们输出至 response body。
for name, headers := range req.Header {
for _, h := range headers {
fmt.Fprintf(w, "%v: %v\n", name, h)
}
}
}
func main() {
// 使用 `http.HandleFunc` 函数,可以方便的将我们的 handler 注册到服务器路由。
// 它是 `net/http` 包中的默认路由,接受一个函数作为参数。
http.HandleFunc("/hello", hello)
http.HandleFunc("/headers", headers)
// 最后,我们调用 `ListenAndServe` 并带上端口和 handler。
// nil 表示使用我们刚刚设置的默认路由器。
http.ListenAndServe(":8090", nil)
}
# 后台运行服务器。
$ go run http-servers.go &
# 访问 `/hello` 路由。
$ curl localhost:8090/hello
hello