用于子路径路由的 Gorilla Mux

我有以下路线:


router.Methods("POST").Path("/my_post_01").HandlerFunc(myHandler1)

router.Methods("GET").Path("/my_get_01").HandlerFunc(myHandler2)


router.Methods("POST").Path("/my_post_02").HandlerFunc(myHandler3)

router.Methods("GET").Path("/my_get_02").HandlerFunc(myHandler4)


router.Methods("POST").Path("/my_post_03").HandlerFunc(myHandler5)

router.Methods("GET").Path("/my_get_03").HandlerFunc(myHandler6)


router.Methods("POST").Path("/my_post_04").HandlerFunc(myHandler7)

router.Methods("GET").Path("/my_get_04").HandlerFunc(myHandler8)


router.Methods("POST").Path("/my_post_05").HandlerFunc(myHandler9)

router.Methods("GET").Path("/my_get_05").HandlerFunc(myHandler10)

随着我的路线越来越多,管理起来越来越困难。


我想做类似的事情:


router.Path("/my/*").HandleFunc(mypackage.RegisterHandler)

所有处理程序都在另一个包中分开


有什么办法可以在单独的包中匹配这些路径吗?


ABOUTYOU
浏览 189回答 2
2回答

牧羊人nacy

您可以为您的路由器创建一个包,然后导入所述包并添加您的路由。路由器package routervar Router = mux.NewRouter()// handle "/my/" routesvar MyRouter = Router.PathPrefix("/my").Subrouter()另一个包裹import "/path/to/router"func init() {    router.MyRouter.Methods("POST").Path("/post_01").HandlerFunc(myHandler1)}在主要import "/path/to/router"func main() {    http.Handle("/", router.Router)    //...}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go