This commit is contained in:
wolter 2024-05-08 14:14:41 +08:00
parent a8e7a96d4c
commit 337f0c4a87
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ type HTTPError struct {
* @param request 传入request数据结构的指针 new(TestRequest) * @param request 传入request数据结构的指针 new(TestRequest)
*/ */
func GenRequest(c *gin.Context, request interface{}) (msgs []string, err error) { 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) err = c.ShouldBindQuery(request)
} else { } else {
err = c.ShouldBindJSON(request) err = c.ShouldBindJSON(request)