This commit is contained in:
wolter 2024-05-07 18:44:13 +08:00
parent f1a968c3a2
commit 3c0e3e4e6a
1 changed files with 3 additions and 2 deletions

View File

@ -68,12 +68,13 @@ func ValidateRequest() gin.HandlerFunc {
utils.Log(c, "path", path)
controllers.HandCodeRes(c, nil, errorcode.NotFound)
} else {
msg, err := controllers.GenRequest(c, handler())
v := handler()
msg, err := controllers.GenRequest(c, v)
if err != nil {
utils.Log(c, "path", path)
controllers.Error(c, errorcode.ParamError, msg...)
} else {
c.Set("request", handler())
c.Set("request", v)
c.Next()
}