来自内部处理程序的Gorilla Mux路由器只能工作一次,然后找不到404页面

时间:2014-10-30 12:34:55

标签: go gorilla

我正在使用Gorilla mux作为我的路由器,我的行为非常奇怪。在第一次请求服务器时,我得到了有效的响应。但在随后的请求中,我收到了404 page not found。控制台中没有错误。

我的代码非常简单(可以通过复制粘贴来测试它):

package main

import (
    "fmt"
    "github.com/gorilla/mux"
    "log"
    "net/http"
)

func main() {
    router := mux.NewRouter()
    router.HandleFunc("/", RootHandler).Name("root")
    http.Handle("/", router)

    log.Println("Listening on port 1337...")
    if err := http.ListenAndServe(":1337", nil); err != nil {
        log.Fatal("http.ListenAndServe: ", err)
    }
}

func RootHandler(w http.ResponseWriter, r *http.Request) {
    content := "Welcome to "
    rootUrl, err := mux.CurrentRoute(r).Subrouter().Get("root").URL()
    if err != nil {
        log.Printf("mux.CurrentRoute(r).Subrouter().Get(\"root\").URL(): ", err)
    }
    response := content + rootUrl.String()
    fmt.Fprintf(w, response)
}

经过一些代码评论和测试后,似乎以下几行是罪魁祸首:

rootUrl, err := mux.CurrentRoute(r).Subrouter().Get("root").URL()

使用当前请求将路由器放入处理程序内的这种方法来自另一个StackOverflow帖子:How to call a route by its name from inside a handler?

但由于一个奇怪的原因,它只能运作一次:

shell-1$ go run servertest.go
2014/10/30 13:31:34 Listening on port 1337...

shell-2$ curl http://127.0.0.1:1337
Welcome to /
shell-2$ curl http://127.0.0.1:1337
404 page not found

如您所见,控制台中没有错误。

有人知道为什么只能一次 吗?

1 个答案:

答案 0 :(得分:1)

问题是Subrouter()没有返回路由器,而是创建一个路由器,因此它改变了调用路由器的匹配器,使你丢失了处理程序。

您可以尝试使用闭包将路由器传递给处理程序。

func RootHandler(router *mux.Router) func(http.ResponseWriter, *http.Request) {
    return func(w http.ResponseWriter, r *http.Request) {
        ...
    }
}