mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
parse body only if content length > 0
This commit is contained in:
parent
05c8dd0b9c
commit
a26fc2b672
@ -34,7 +34,11 @@ func Parse(r *http.Request, v interface{}) error {
|
||||
return err
|
||||
}
|
||||
|
||||
return ParseJsonBody(r, v)
|
||||
if r.ContentLength > 0 {
|
||||
return ParseJsonBody(r, v)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// Parses the form request.
|
||||
|
@ -20,4 +20,4 @@ const (
|
||||
CodeSignatureInvalidToken
|
||||
)
|
||||
|
||||
var ErrBodylessRequest = errors.New("not a POST|PUT|PATCH request")
|
||||
var ErrBodylessRequest = errors.New("not a POST|PUT|PATCH|DELETE request")
|
||||
|
Loading…
Reference in New Issue
Block a user