大猩猩 mux http 包
Gorilla mux http package
我在我的 golang 应用程序中使用 Gorilla mux 作为我的路由器和调度程序,我有一个 - 我认为 - 简单的问题:
在我的主体中,我创建了一个路由器:r := mux.NewRouter()
。再往前几行,我注册了一个处理程序:r.HandleFunc("/", doSomething)
.
到目前为止一切顺利,但现在我的问题是我有一个包将处理程序添加到 Golang 的 http package
而不是我的 mux 路由器。像这样:
func AddInternalHandlers() {
http.HandleFunc("/internal/selfdiagnose.html", handleSelfdiagnose)
http.HandleFunc("/internal/selfdiagnose.xml", handleSelfdiagnose)
http.HandleFunc("/internal/selfdiagnose.json", handleSelfdiagnose)
}
如您所见,它将句柄添加到 http.HandleFunc 而不是 mux-handleFunc。知道如何在不触及包裹本身的情况下解决这个问题吗?
工作示例
package main
import (
"fmt"
"log"
"net/http"
selfdiagnose "github.com/emicklei/go-selfdiagnose"
"github.com/gorilla/mux"
)
func homeHandler(w http.ResponseWriter, r *http.Request) {
log.Println("home")
}
func main() {
r := mux.NewRouter()
r.HandleFunc("/", homeHandler)
selfdiagnose.AddInternalHandlers()
// when handler (nil) gets replaced with mux (r), then the
// handlers in package selfdiagnose are not "active"
err := http.ListenAndServe(fmt.Sprintf("%s:%d", "localhost", 8080), nil)
if err != nil {
log.Println(err)
}
}
好吧,在您的具体情况下,解决方案很简单。
selfdiagnose包的作者选择handlers自己制作public,所以你可以直接使用它们:
r.HandleFunc("/", homeHandler)
// use the handlers directly, but you need to name a route yourself
r.HandleFunc("/debug", selfdiagnose.HandleSelfdiagnose)
工作示例:https://gist.github.com/miku/9836026cacc170ad5bf7530a75fec777
我在我的 golang 应用程序中使用 Gorilla mux 作为我的路由器和调度程序,我有一个 - 我认为 - 简单的问题:
在我的主体中,我创建了一个路由器:r := mux.NewRouter()
。再往前几行,我注册了一个处理程序:r.HandleFunc("/", doSomething)
.
到目前为止一切顺利,但现在我的问题是我有一个包将处理程序添加到 Golang 的 http package
而不是我的 mux 路由器。像这样:
func AddInternalHandlers() {
http.HandleFunc("/internal/selfdiagnose.html", handleSelfdiagnose)
http.HandleFunc("/internal/selfdiagnose.xml", handleSelfdiagnose)
http.HandleFunc("/internal/selfdiagnose.json", handleSelfdiagnose)
}
如您所见,它将句柄添加到 http.HandleFunc 而不是 mux-handleFunc。知道如何在不触及包裹本身的情况下解决这个问题吗?
工作示例
package main
import (
"fmt"
"log"
"net/http"
selfdiagnose "github.com/emicklei/go-selfdiagnose"
"github.com/gorilla/mux"
)
func homeHandler(w http.ResponseWriter, r *http.Request) {
log.Println("home")
}
func main() {
r := mux.NewRouter()
r.HandleFunc("/", homeHandler)
selfdiagnose.AddInternalHandlers()
// when handler (nil) gets replaced with mux (r), then the
// handlers in package selfdiagnose are not "active"
err := http.ListenAndServe(fmt.Sprintf("%s:%d", "localhost", 8080), nil)
if err != nil {
log.Println(err)
}
}
好吧,在您的具体情况下,解决方案很简单。
selfdiagnose包的作者选择handlers自己制作public,所以你可以直接使用它们:
r.HandleFunc("/", homeHandler)
// use the handlers directly, but you need to name a route yourself
r.HandleFunc("/debug", selfdiagnose.HandleSelfdiagnose)
工作示例:https://gist.github.com/miku/9836026cacc170ad5bf7530a75fec777