在最近的讨论中,提出了一种技术使用自定义路由器和错误类型增强 Golang HTTP 应用程序中的错误处理。目标是集中错误报告和处理,消除在特定处理程序中直接调用 c.JSON(500, err) 的需要。
在 Gin 中框架,这可以通过使用中间件和 gin.Context.Error() 方法来实现。它的工作原理如下:
<code class="go">type AppError struct { Code int `json:"code"` Message string `json:"message"` } func JSONAppErrorReporter(errType gin.ErrorType) gin.HandlerFunc { return func(c *gin.Context) { c.Next() errors := c.Errors.ByType(errType) if len(errors) > 0 { err := errors[0].Err var parsedError *AppError switch err.(type) { case *AppError: parsedError = err.(*AppError) default: parsedError = &AppError{ code: http.StatusInternalServerError, message: "Internal Server Error", } } c.IndentedJSON(parsedError.Code, parsedError) c.Abort() } } }</code>
<code class="go">router.Use(JSONAppErrorReporter(gin.ErrorTypeAny))</code>
<code class="go">func fetchSingleHostGroup(c *gin.Context) { hostgroupID := c.Param("id") hostGroupRes, err := getHostGroupResource(hostgroupID) if err != nil { c.Error(err) return } c.JSON(http.StatusOK, *hostGroupRes) }</code>
<code class="go">router := gin.Default() router.GET("/hostgroups/:id", fetchSingleHostGroup) router.Run(":3000")</code>
有关 Gin 中错误处理的更多信息,请参阅以下资源:
以上是如何在Gin框架中实现集中错误处理?的详细内容。更多信息请关注PHP中文网其他相关文章!