mirror of
https://github.com/gin-gonic/gin.git
synced 2025-06-17 08:33:58 +08:00
Added nil check for embedded structs
This commit is contained in:
@ -176,6 +176,10 @@ func Validate(obj interface{}) error {
|
||||
if strings.Index(field.Tag.Get("binding"), "required") > -1 {
|
||||
fieldType := field.Type.Kind()
|
||||
if fieldType == reflect.Struct {
|
||||
if reflect.DeepEqual(zero, fieldValue) {
|
||||
return errors.New("Required " + field.Name)
|
||||
}
|
||||
|
||||
err := Validate(fieldValue)
|
||||
if err != nil {
|
||||
return err
|
||||
|
Reference in New Issue
Block a user