1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

feat(net/ghttp): remove Req/Res suffix limitation for input/output parameters of strict router handler (#3848)

This commit is contained in:
John Guo 2024-11-14 17:58:39 +08:00 committed by GitHub
parent 955a76cf35
commit 3d4904eb3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -221,28 +221,6 @@ func (s *Server) checkAndCreateFuncInfo(
}
*/
// The request struct should be named as `xxxReq`.
reqStructName := trimGeneric(reflectType.In(1).String())
if !gstr.HasSuffix(reqStructName, `Req`) {
err = gerror.NewCodef(
gcode.CodeInvalidParameter,
`invalid struct naming for request: defined as "%s", but it should be named with "Req" suffix like "XxxReq"`,
reqStructName,
)
return
}
// The response struct should be named as `xxxRes`.
resStructName := trimGeneric(reflectType.Out(0).String())
if !gstr.HasSuffix(resStructName, `Res`) {
err = gerror.NewCodef(
gcode.CodeInvalidParameter,
`invalid struct naming for response: defined as "%s", but it should be named with "Res" suffix like "XxxRes"`,
resStructName,
)
return
}
funcInfo.IsStrictRoute = true
inputObject = reflect.New(funcInfo.Type.In(1).Elem())