增強 Gin 中的錯誤處理
Gin 的自訂錯誤處理涉及使用中間件來處理錯誤回應。這允許錯誤邏輯與正常流程邏輯分離。
錯誤處理中間件
<code class="go">type appError struct { Code int Message string } func JSONAppErrorReporter() gin.HandlerFunc { return func(c *gin.Context) { c.Next() errors := c.Errors.ByType(gin.ErrorTypeAny) 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", } } // Respond with JSON serialized error c.IndentedJSON(parsedError.Code, parsedError) c.Abort() } } }</code>
處理函數中的使用
<code class="go">func fetchSingleHostGroup(c *gin.Context) { hostgroupID := c.Param("id") hostGroupRes, err := getHostGroupResource(hostgroupID) if err != nil { // Attach error to the context c.Error(err) return } // Respond with valid data c.JSON(http.StatusOK, *hostGroupRes) }</code>
伺服器設定
<code class="go">func main() { router := gin.Default() router.Use(JSONAppErrorReporter()) router.GET("/hostgroups/:id", fetchSingleHostGroup) router.Run(":3000") }</code>
其他資源
有關Gin 中錯誤處理的更多見解,請參閱以下資源:以上是如何使用中間件方法有效處理 Gin Web 應用程式中的錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!