Merge remote-tracking branch 'origin/master'

This commit is contained in:
qiyunfanbo126.com 2024-05-09 16:16:33 +08:00
commit b657e551ea
1 changed files with 1 additions and 1 deletions

View File

@ -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)