登录
首页 >  Golang >  Go教程

如何在 Gin 中扩展 Context?

时间:2024-11-26 11:49:17 119浏览 收藏

学习知识要善于思考,思考,再思考!今天golang学习网小编就给大家带来《如何在 Gin 中扩展 Context?》,以下内容主要包含等知识点,如果你正在学习或准备学习Golang,就都不要错过本文啦~让我们一起来看看吧,能帮助到你就更好了!

如何在 Gin 中扩展 Context?

gin context 如何扩展

在 gin 中,如果你需要对 context 进行扩展,可以使用闭包的方式。

比如我们想要自定义一个 c.fail("上传失败") 方法,可以这样写:

type Context struct {
    *gin.Context
}

func (ctx Context) Fail(msg string) {
    ctx.JSON(500, gin.H{
        "message": msg,
    })
}

func NewExtendContext(fn(Context)) gin.HandlerFunc {
    return func(ctx *gin.Context) {
        fn(Context{ctx})
    }
}

func upload(ctx Context) {
    // ...
    ctx.Fail("上传失败")
}

app.Get("/upload", NewExtendContext(upload))

这样,我们就可以在业务代码中调用 ctx.fail("上传失败") 来返回一个失败响应了。

以上就是《如何在 Gin 中扩展 Context?》的详细内容,更多关于的资料请关注golang学习网公众号!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>