최근 토론에서 다음을 수행하는 기술이 제안되었습니다. 사용자 정의 라우터 및 오류 유형을 사용하여 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!