Go-net/http-服务器:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年2月2日 (星期五)

  • 当前之前 09:082024年2月2日 (五) 09:08BrainBs 讨论 贡献 816字节 +816 创建页面,内容为“ ListenAndServe 启动一个具有给定地址和处理器的 HTTP 服务器。处理器通常为 nil,这意味着使用 DefaultServeMux。Handle 和 HandleFunc 向 DefaultServeMux 添加处理器: <syntaxhighlight lang="go">http.Handle("/foo", fooHandler) http.HandleFunc("/bar", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path)) }) log.Fatal(http.ListenAndServe(":8080", nil))</syntaxhighlight> <…”