优化参数查询

This commit is contained in:
qiyunfanbo126.com 2024-05-08 10:33:45 +08:00
parent 213ba47a8b
commit 461c734a6e
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func AdminAuth() gin.HandlerFunc {
func ValidateRequest() gin.HandlerFunc {
return func(c *gin.Context) {
var path = c.Request.RequestURI
var path = c.FullPath()
var handler func() interface{}
if strings.Index(path, "admin") >= 0 {
handler = requestmapping.BackendRequestMap[path]