为了账号安全,请及时绑定邮箱和手机立即绑定

用于子路径路由的 Gorilla Mux

用于子路径路由的 Gorilla Mux

Go
ABOUTYOU 2021-09-13 15:37:44
我有以下路线: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)所有处理程序都在另一个包中分开有什么办法可以在单独的包中匹配这些路径吗?
查看完整描述

2 回答

?
牧羊人nacy

TA贡献1862条经验 获得超7个赞

您可以为您的路由器创建一个包,然后导入所述包并添加您的路由。


路由器


package router


var Router = mux.NewRouter()

// handle "/my/" routes

var 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)


    //...

}


查看完整回答
反对 回复 2021-09-13
  • 2 回答
  • 0 关注
  • 188 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信