首頁 > 後端開發 > Golang > 主體

如何使用中間件方法有效處理 Gin Web 應用程式中的錯誤?

DDD
發布: 2024-11-01 11:42:29
原創
354 人瀏覽過

How can I effectively handle errors within my Gin web application using a middleware approach?

增強 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-gonic 問題#327](https://github.com/gin-gonic/gin/issues/327)
  • [gin-gonic 問題#651](https://github.com/ gin-gonic/gin/issues/651)
  • [chirp](https://github.com/go-chi/chi/tree/master/中間件)
  • [gin- merry](https://github.com/gin-contrib/gin-merry)
  • [gin-frsh-showerrors](https://github.com) com/frsh/gin-showerrors)

以上是如何使用中間件方法有效處理 Gin Web 應用程式中的錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!