我在我的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)
}
}
答案 0 :(得分:1)
嗯,在您的特定情况下,解决方案很简单。
selfdiagnose包的作者选择公开handlers,所以你可以直接使用它们:
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