1 Star 2 Fork 2

枫枫/study_gin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2.路由.go 575 Bytes
一键复制 编辑 原始数据 按行查看 历史
枫枫 提交于 2024-06-02 01:03 . 中间件
// /2.路由.go
package main
import (
"fmt"
"github.com/gin-gonic/gin"
)
func UserView(c *gin.Context) {
path := c.Request.URL
fmt.Println(c.Request.Method, path)
}
func main() {
r := gin.Default()
apiGroup := r.Group("api")
apiGroup.Use()
UserGroup(apiGroup)
noMiddleWareGroup := r.Group("api")
LoginGroup(noMiddleWareGroup)
r.Run(":8080")
}
func UserGroup(r *gin.RouterGroup) {
r.GET("users", UserView)
r.POST("users", UserView)
r.DELETE("users", UserView)
r.PUT("users", UserView)
}
func LoginGroup(r *gin.RouterGroup) {
r.GET("login", UserView)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fengfengzhidao/study_gin.git
git@gitee.com:fengfengzhidao/study_gin.git
fengfengzhidao
study_gin
study_gin
master

搜索帮助