英文: What's the best way to validate an untagged Go struct 问题 每当我创建一个Go结构体时,我都会使用结构标签,以便可以使用go-pl...
接口转换:错误是*errors.errorString,而不是validator.ValidationErrors。
英文: interface conversion: error is *errors.errorString, not validator.ValidationErrors 问题 type BookI...
Validator v10 获取单个字段上的错误列表
英文: Validator v10 get list of error on single field 问题 有没有办法获取每个验证失败的错误列表? 目前我只收到一个错误,而且是来自第一个验证失败的地...
如何通过Golang跳过对空数组的JSON验证
英文: how to skip json validation for an empty array via Golang 问题 我想要跳过对 JSON 文件中特定字段的空数组进行验证。下面是 Boo...
根据请求的HTTP方法运行不同的验证[Go Gin]。
英文: Run different validation depending on the HTTP Method of the request [Go Gin] 问题 所以我目前正在使用Go和Gin...
如何在Go中定义一个与给定字符串变量等效的validator.FieldLevel?
英文: How to define a validator.Fieldlevel equivalent of a given string variable in Go? 问题 我正在使用Go的val...
从结构标签验证返回自定义错误消息
英文: Return custom error message from struct tag validation 问题 我正在使用Go 1.17和Gin,我想在将数据发送到数据库之前实现结构体验证...
Gin Gonic在发送无效数据时自定义错误消息失败。
英文: Gin Gonic Custom Error Message Fails When Invalid Data Sent 问题 Validator结构体 type RegisterValidat...
自定义验证器以比较两个字段
英文: Custom validator to compare two fields 问题 我有两个字段 - StartTime 和 EndTime - 它们都是 time.Time 类型,并且它们都...
`@valid`注解在Spring Boot中不起作用。
英文: @valid annotation is not working in spring boots 问题 我正在使用Spring Boot构建API,在POST请求中,我使用Valid注解来验证...
25