英文: PATCH http request validation of single field 问题 我有一个类似这样的结构体片段: type Talent struct { Code strin...
Golang创建自定义验证器,执行接口的方法。
英文: Golang create custom validator that executes method of an interface 问题 我正在尝试为gin创建自己的验证器,但我希望它是“...
Golang:验证类型为字符串的结构字段是否为特定值之一
英文: Golang: Validate Struct field of type string to be one of specific values 问题 golang版本:1.18.3 验证器...
GoLang验证器非必填字段返回错误
英文: GoLang Validator Non-Required Fields Returns Error 问题 我正在使用GoLang Validator来验证结构体的字段。尽管我没有添加requ...
Golang:验证切片项中的结构字段
英文: Golang: Validate Struct Fields in Slice Items 问题 我是你的中文翻译助手,以下是翻译好的内容: 我是Go语言的新手。 Go语言版本:1.17.8 ...
如何在Go Fiber中访问下面的JSON值?
英文: How to access below json values in go fiber? 问题 这是我写的代码。当我使用token.Claims方法时,它返回以下结果。我需要访问电子邮件值,以...
如何在Go语言中使用ozzo验证库进行最大时间验证。
英文: How to make time maximum validation with ozzo validation in golang 问题 我想要创建一个时间的最大输入,格式为时间(例如23:...
Validate two fields of struct with OR condition in Golang
英文: Validate two fields of struct with OR condition in Golang 问题 我正在尝试验证一个包含两个字段的结构体,其中一个是必填的,另一个是可选...
如何在 JSON 验证中避免切片中的重复元素?
英文: How to avoid duplicate elements in slice in json validation? 问题 尽管我不是一名专业的Golang开发者,但我正在尝试在JSON验...
结构标签是否对API用户抛出错误?
英文: Do struct tags throw error to the API user? 问题 type Person struct { Id string Roll_no int Email ...
25