我努力让我的路由特定中间件与httprouter和Negroni一起工作。登录路由需要Middleware2
,所有其他路由都需要Middleware1
。
到目前为止,我有:
func Main() {
router := httprouter.New()
protectedRoutes := httprouter.New()
DefineRoutes(router)
DefineProtectedRoutes(protectedRoutes)
//This is the block that I'm unsure about
//How can I introduce Middleware2 for a specific route?
n := negroni.New()
n.Use(negroni.HandlerFunc(Middleware1))
n.UseHandler(router)
n.Run(":5000")
}
func DefineRoutes(router *httprouter.Router) {
router.POST("/v1/users/authenticate", UserLogin)
router.POST("/v1/users/authorize", UserLogin)
router.POST("/v1/users/logout", UserLogout)
}
func DefineProtectedRoutes(router *httprouter.Router) {
router.POST("/v1/users/login", UserLogin)
}
但是现在我有点卡住,因为网站上的示例(https://github.com/codegangsta/negroni)使用标准处理程序。
答案 0 :(得分:0)
不确定是否还有人在寻找答案。我认为可以通过调用router.Lookup函数来检索params。这是我做的:
_, params, _ := router.Lookup("GET", req.URL.Path)
其中router是httprouter.Router的实例