gin context 怎么扩展?我想自定义一个响应方法

image.png

程序里很多这样的代码,
我想自定义一个c.Fail("上传失败")
请问应该怎么写?

阅读 5.2k
2 个回答

闭包 ,新增方法只能这样


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))

不能. echo可以, 因为他是接口. 自己扩展就写一个辅助函数就好了.

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题