Go-net/http-func HandleFunc:修订历史

跳到导航 跳到搜索

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

2024年2月2日 (星期五)

  • 当前之前 09:092024年2月2日 (五) 09:09BrainBs 讨论 贡献 682字节 +682 创建页面,内容为“ HandleFunc 在 DefaultServeMux 中为给定模式注册处理函数。 <syntaxhighlight lang="go">func HandleFunc(pattern string, handler func(ResponseWriter, *Request))</syntaxhighlight> <br> <syntaxhighlight lang="go">package main import ( "io" "log" "net/http" ) func main() { h1 := func(w http.ResponseWriter, _ *http.Request) { io.WriteString(w, "Hello from a HandleFunc #1!\n") } h2 := func(w http.ResponseWriter, _ *http.…”