-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Panic on max, min Validation Tag with struct Fields in Version v10.20.0 and above #1300
Comments
I also have the same problem starting from version 10.16.0 but with my own custom struct |
I have the same issue for |
You need to register a custom func to pull out the "real" value of custom struct: func makeValidator() *validator.Validate {
validate := validator.New(validator.WithRequiredStructEnabled())
// register func for custom struct, do this for every custom struct
// you're going to need
validate.RegisterCustomTypeFunc(validateValuer, sql.NullString{}, sql.NullInt64{})
return validate
}
func validateValuer(field reflect.Value) interface{} {
if valuer, ok := field.Interface().(driver.Valuer); ok {
val, err := valuer.Value()
if err == nil {
// return the "real" value of custom struct
// for example: if concrete type of driver.Valuer interface
// is sql.NullString then val will be a string
return val
}
}
// return nil means this field is indeed "null".
// field with tag `required` will fail the check
return nil
} Check out my article here for a detail explanation, why it panics when you add min, max tag. |
Actually after some more testing and investigation it turned out my problem was not because of nullable value. I had slice of custom struct and using Gin I also said the during the binding to "dive" and validate my custom struct beside checking the maximum of elements in the slice.
So in the end I just needed to change the order of the binding rules to "max=50,dive" and this fixed my issue! Not sure why the messed order was working for me in older versions. |
Package version eg. v9, v10:
v10.20.0
Issue, Question or Enhancement:
The go-playground/validator package panics when validating struct fields with the max tag on null.Int fields. This issue did not occur in earlier versions. Previously, the package would not panic.
Code sample, to showcase or reproduce:
Expected behavior:
The validator should not panic when encountering the max tag on null.Int fields. Ideally, it should either validate the null.Int field properly or skip validation without causing a panic.
Actual behavior:
The validator panics when it encounters the max tag on null.Int fields.
Steps to reproduce:
There might me other tags aswell which now panics with struct i have checked with min, max only
The text was updated successfully, but these errors were encountered: