From 337f0c4a875f7a9f6226fab682e84bcc43488a03 Mon Sep 17 00:00:00 2001 From: wolter Date: Wed, 8 May 2024 14:14:41 +0800 Subject: [PATCH] fix --- app/http/controllers/base.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/http/controllers/base.go b/app/http/controllers/base.go index 6ea742a..71d54d0 100644 --- a/app/http/controllers/base.go +++ b/app/http/controllers/base.go @@ -100,7 +100,7 @@ type HTTPError struct { * @param request 传入request数据结构的指针 如 new(TestRequest) */ func GenRequest(c *gin.Context, request interface{}) (msgs []string, err error) { - if c.Request.Method == "GET" { + if c.Request.Method == "GET" || c.Request.Method == "DELETE" { err = c.ShouldBindQuery(request) } else { err = c.ShouldBindJSON(request)