Golang:02-Web 开发的本质
一个请求对应一个响应。一个简单的服务器package mainimport ( "fmt" "io/ioutil" "net/http")func sayHello(w http.ResponseWriter, r *http.Request) { b, _ := ioutil.ReadFile("./hello.txt") _, _ = fmt.Fprintln(w, string(b))}func main() { http.HandleFu





