You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
problem description
Before validating a struct, the validator will parse this struct into a map struct. During the parsing process, if the kind of struct's field is struct type, the parsing function will parse this field recursively. However, some of the struct fields should not be parsed recursively e.g decimal.Decimal, time.Time.
problem description
Before validating a struct, the validator will parse this struct into a map struct. During the parsing process, if the kind of struct's field is struct type, the parsing function will parse this field recursively. However, some of the struct fields should not be parsed recursively e.g
decimal.Decimal
,time.Time
.demo code
solution
The text was updated successfully, but these errors were encountered: