在最近的討論中,提出了一種技術使用自訂路由器和錯誤類型來增強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中文網其他相關文章!