package main import ( "fmt" "github.com/gin-gonic/gin" ) func middleware() gin.HandlerFunc { return func(c *gin.Context) { fmt.Println("I am before next") c.Header("Access-Control-Allow-Origin", "test") c.Set("name", "test") /* c.Next()后就执行真实的路由函数,路由函数执行完成之后继续执行后续的代码 */ c.Next() fmt.Println("I am after next") } } func main() { r := gin.Default() r.Use(middleware()) r.GET("/test", func(c *gin.Context) { fmt.Println("I am https://www.zhouchun.net") name, _ := c.Get("name") c.JSON(200, gin.H{"name": name}) }) r.Run("0.0.0.0:10020") }
以上所述就是小编给大家介绍的《golang框架gin中间件的写法》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Learning PHP 5
David Sklar / O'Reilly / July, 2004 / $29.95
Learning PHP 5 is the ideal tutorial for graphic designers, bloggers, and other web crafters who want a thorough but non-intimidating way to understand the code that makes web sites dynamic. The book ......一起来看看 《Learning PHP 5》 这本书的介绍吧!