Skip to content
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

The validate returns an error object. How do I get the correct field name and the corresponding check message #105

Closed
tocomp opened this issue Mar 4, 2024 · 1 comment
Labels
Bug Something isn't working

Comments

@tocomp
Copy link

tocomp commented Mar 4, 2024

var err error
var pv *protovalidate.Validator
pv, err = protovalidate.New()
if err != nil {
    fmt.Println("failed to initialize validator:", err)
}

if err = pv.Validate(req); err != nil {
    fmt.Println("validation failed:", err)
} else {
    fmt.Println("validation succeeded")
}
validation failed: validation error:
 - versionId: value length must be at least 32 characters [string.min_len]
@tocomp tocomp added the Bug Something isn't working label Mar 4, 2024
@tocomp
Copy link
Author

tocomp commented Mar 4, 2024

Thanks, I found a way to convert ValidationError

@tocomp tocomp closed this as completed Mar 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant