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

跳到导航 跳到搜索

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

2024年2月2日 (星期五)

  • 当前之前 09:092024年2月2日 (五) 09:09BrainBs 讨论 贡献 633字节 +633 创建页面,内容为“ Handle 在 DefaultServeMux 中为给定模式注册处理器。 <syntaxhighlight lang="go">func Handle(pattern string, handler Handler)</syntaxhighlight> <br> <syntaxhighlight lang="go">package main import ( "fmt" "log" "net/http" "sync" ) type countHandler struct { mu sync.Mutex // guards n n int } func (h *countHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { h.mu.Lock() defer h.mu.Unlock() h.n++ fmt.…”