~~~
http.HandleFunc 有什么办法支持实现多个路径 举个例子 统一管理 归类方便 看起来清晰
http.HandleFunc(fmt.Sprintf("/api/%s"), func(w http.ResponseWriter, r *http.Request) {
switch {
case "test1":
case "test2":
}
})
~~~
你需要router
golang自带mux
另外还有
https://github.com/julienschmidt/httprouter/
https://github.com/gorilla/mux
#1