我想获取一个命名子路由的路径,但是下面的代码不起作用。当我尝试在非子路由上使用相同的逻辑时,它可以正常工作。如何获取命名子路由的路径?

router = mux.NewRouter() // this is a global variable
home := router.Path("/home").Subrouter()
home.Methods("GET").HandlerFunc(c.GetHomeHandler).Name("home")
home.Methods("POST").HandlerFunc(c.PostHomeHandler)

p, err := router.Get("home").URL()
if (err != nil) { panic (err) }
log.Printf(p.Path)

上面给出了这个错误:
panic: mux: route doesn't have a host or path

现在,如果我执行router.HandleFunc("/home", c.GetHomeHandler).Name("home"),它就可以正常工作。

感谢你的帮助。

更新:

这是一个合理的解决方法,但避免了创建子路由。我上面的示例很好,但可能并不理想,因为您将无法获得子路由的所有优势。
router.Path("/home").Methods("GET").HandlerFunc(c.GetHomeHandler).Name("home")
router.Path("/home").Methods("POST").HandlerFunc(c.PostHomeHandler)

谢谢!

最佳答案

我相信您需要使用PathPrefix指定子路由,然后才能支持/home和/home/启用StrictSlash(due to this issue)

router := mux.NewRouter()
home := router.PathPrefix("/home").Subrouter().StrictSlash(true)
home.Path("/").Methods("GET").HandlerFunc(GetHomeHandler).Name("home")
home.Path("/post/").Methods("POST").HandlerFunc(PostHomeHandler).Name("home-post")


p, err := router.Get("home").URL()
if (err != nil) { panic (err) }
log.Printf(p.Path)

p, err = home.Get("home-post").URL()
if (err != nil) { panic (err) }
log.Printf(p.Path)

10-06 07:25