dongyunwei8596 2017-02-21 16:56 采纳率: 100%
浏览 404
已采纳

如何在gin路由中添加多个组以实现api版本继承?

I'm currently working on a API with Go + Gin.

The API should include a version string, for example the string v1

http://127.0.0.1:3000/v1/user/get_username

That is no problem, because I can create a group with Gin

v1 := router.Group("/v1")
v1.GET("/user/get_username", modules.UserGetUsername)

But... if I start a new API-Version "v2" and the code within the function UserGetUsername didn't changed I must do the following

v1 := router.Group("/v1")
v1.GET("/user/get_username", modules.UserGetUsername)
v2 := router.Group("/v2")
v2.GET("/user/get_username", modules.UserGetUsername)

Is there a nicer solution for that - maybe something like that:

v1_v2 := router.Group("/v1").AnotherGroup("/v2")
v1_v2.GET("/user/get_username", modules.UserGetUsername)

Thank you for your suggestions.

  • 写回答

1条回答 默认 最新

  • douyueju2912 2017-02-21 21:48
    关注

    I don’t think Gin provides this, but it looks easy to write.

    type GroupGroup struct {
        groups []*gin.RouterGroup
    }
    
    func NewGroupGroup(groups []*gin.RouterGroup) GroupGroup {
        return GroupGroup {
            groups,
        }
    }
    
    func (g *GroupGroup) handle(method string, path string, handler gin.HandlerFunc) {
        for _, group := range g.groups {
            group.Handle(method, path, handler)
        }
    }
    

    Then, you can use it like so :

    v1 := router.Group("/v1")
    v2 := router.Group("/v2")
    
    g := NewGroupGroup([]*gin.RouterGroup { v1, v2 })
    
    g.handle(http.MethodGet, "hello", sayHello)
    g.handle(http.MethodPost, "goodbye", sayGoodbye)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 有没有帮写代码做实验仿真的
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥30 vmware exsi重置后登不上
  • ¥15 易盾点选的cb参数怎么解啊
  • ¥15 MATLAB运行显示错误,如何解决?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题