自定义规则分为两种:全局规则注册和局部规则注册。
全局校验规则注册
全局规则是全局生效的规则,注册之后无论是使用方法还是对象来执行数据校验都可以使用自定义的规则。
注册校验方法:
// RegisterRule registers custom validation rule and function for package.
// It returns error if there's already the same rule registered previously.
func RegisterRule(rule string, f RuleFunc) error
校验方法定义:
// RuleFunc is the custom function for data validation.
// The parameter `rule` specifies the validation rule string, like "required", "between:1,100", etc.
// The parameter `value` specifies the value for this rule to validate.
// The parameter `message` specifies the custom error message or configured i18n message for this rule.
// The parameter `data` specifies the `data` which is passed to the Validator. It might be type of map/struct or a nil value.
// You can ignore the parameter `data` if you do not really need it in your custom validation rule.
type RuleFunc func(ctx context.Context, rule string, value interface{}, message string, data interface{}) error
简要说明:
- 您需要按照
RuleFunc
类型的方法定义,实现一个您需要的校验方法,随后使用RegisterRule
注册到gvalid
模块中全局管理。该注册逻辑往往是在程序初始化时执行。该方法在对数据进行校验时将会被自动调用,方法返回nil
表示校验通过,否则应当返回一个非空的error
类型值。 - 参数说明:
ctx
表示当前链路的上下文变量。rule
参数表示当前的校验规则,包含规则的参数,例如:required
,between:1,100
,length:6
等等。value
参数表示被校验的数据值,注意类型是一个interface{}
,因此您可以传递任意类型的参数,并在校验方法内部按照程序使用约定自行进行转换(往往使用gconv
模块实现转换)。message
参数表示在校验失败后返回的校验错误提示信息,往往在struct
定义时使用gvalid tag
来通过标签定义。data
参数表示校验时传递的参数,例如校验的是一个map
或者struct
时,往往在联合校验时有用。需要注意的是,这个值是运行时输入的,值可能是nil
。
自定义错误默认情况下已支持 i18n
特性,因此您只需要按照 gf.gvalid.rule.自定义规则名称
配置 i18n
转译信息即可,该信息在校验失败时自动从 i18n
管理器获取后,通过 message
参数传入给您注册的自定义校验方法中。
注意事项:自定义规则的注册方法不支持并发调用,您需要在程序启动时进行注册(例如在 boot
包中处理),无法在运行时动态注册,否则会产生并发安全问题。