Merge remote-tracking branch 'origin/master'

This commit is contained in:
qiyunfanbo126.com 2024-05-07 18:48:15 +08:00
commit 928463b30c
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()
}