我在Golang应用程序中使用 gorilla 多路复用器作为路由器和调度程序,但我有一个-我认为简单的问题:

在我的主机中,我创建了一个路由器: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自己公开,因此您可以直接使用它们:

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

10-08 10:48