码迷,mamicode.com
首页 > 其他好文 > 详细

gin框架使用【5.路由分组】

时间:2021-01-15 11:47:09      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:router   github   pos   package   json   text   框架   path   highlight   

package main

import (
"github.com/gin-gonic/gin"
)

func main() {
router := gin.Default()
v1RouterGroup := router.Group("/v1")
{
v1RouterGroup.GET("/users", func(c *gin.Context) {
c.JSON(200, gin.H{
"path" : "/users",
"method" : "GET",
})
})
v1RouterGroup.POST("/users", func(c *gin.Context) {
c.JSON(200, gin.H{
"path" : "/users",
"method" : "POST",
})
})
}

v2RouterGroup := router.Group("/v2")
{
v2RouterGroup.GET("/users", func(c *gin.Context) {
c.JSON(200, gin.H{
"path" : "/users",
"method" : "GET",
})
})
v2RouterGroup.POST("/users", func(c *gin.Context) {
c.JSON(200, gin.H{
"path" : "/users",
"method" : "POST",
})
})
}
router.Run(":8080")
}

  

gin框架使用【5.路由分组】

标签:router   github   pos   package   json   text   框架   path   highlight   

原文地址:https://www.cnblogs.com/juanmaofeifei/p/14276811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!