闭包 ,新增方法只能这样 type Context struct { *gin.Context } func (ctx Context) Hello() { log.Println("hello eudore") } func NewExtendContext(fn(Context)) gin.HandlrFunc { return func(ctx *gin.Context) { fn(Context{ctx}) } } func hello(ctx Context) { ctx.Hello() } app.Get("/hello", NewExtendContext(hello))
闭包 ,新增方法只能这样