举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > gog错误报告 GoFrame 错误码特性-错误码扩展

gog错误报告 GoFrame 错误码特性-错误码扩展

2023-04-06 12:18 GoFrame教程

gog错误报告 GoFrame 错误码特性-错误码扩展

gog错误报告 GoFrame 错误码特性-错误码扩展

gog错误报告

当业务需要复杂的错误码定义时,我们推荐灵活使用错误码的​Detail​参数来扩展错误码功能。

我们来看个例子。

业务错误码

错误码定义

type BizCode struct {
	User User
	// ...
}

type User struct {
	Id   int
	Name string
	// ...
}

错误码使用

扩展错误码大多数场景下需要使用​WithCode​方法:

// WithCode creates and returns a new error code based on given Code.
// The code and message is from given `code`, but the detail if from given `detail`.
func WithCode(code Code, detail interface{}) Code

因此上面我们的自定义扩展可以这么使用:

code := gcode.WithCode(gcode.CodeNotFound, BizCode{
	User: User{
		Id:   1,
		Name: "John",
	},
})
fmt.Println(code)

即在错误码中我们可以根据业务场景注入一些自定义的错误码扩展数据,以方便上层获取错误码后做进一步处理。

改写中间件

我们将上面自定义的错误码应用到请求返回中间件中,顶层业务逻辑也可以获取到错误码对应的详情再进一步做相关的业务处理。

func ResponseHandler(r *ghttp.Request) {
	r.Middleware.Next()
	// There"s custom buffer content, it then exits current handler.
	if r.Response.BufferLength() > 0 {
		return
	}
	res, err := r.GetHandlerResponse()
	code := gerror.Code(err)
	if code == gcode.CodeNil && err != nil {
		code = gcode.CodeInternalError
	}
	if detail, ok := code.Detail().(BizCode); ok {
		g.Log().Errorf(r.Context(), `error caused by user "%+v"`, detail.User)
	}
	_ = r.Response.WriteJson(ghttp.DefaultHandlerResponse{
		Code:    gcode.CodeOK.Code(),
		Message: gcode.CodeOK.Message(),
		Data:    res,
	})
}

在框架​Server​默认的日志中会自动打印​Detail​数据。


阅读全文
以上是编程学为你收集整理的gog错误报告 GoFrame 错误码特性-错误码扩展全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部