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:
parent
955a76cf35
commit
3d4904eb3d
@ -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())
|
||||
|
Loading…
x
Reference in New Issue
Block a user