examples icon indicating copy to clipboard operation
examples copied to clipboard

hi , where can I get explanation about "binding:"gtfield=CheckIn"

Open HePeng11 opened this issue 4 years ago • 1 comments

as title, where can I get document about validate properties such as eqfield,nefield,gtefield etc...

type Booking struct { CheckIn time.Time form:"check_in" binding:"required" time_format:"2006-01-02"CheckOut time.Timeform:"check_out" binding:"required,gtfield=CheckIn" time_format:"2006-01-02" }

HePeng11 avatar Apr 22 '20 08:04 HePeng11

Gin uses go-playground/validator/v10 for validation. You can find tags usage here: https://godoc.org/github.com/go-playground/validator#hdr-Baked_In_Validators_and_Tags.

escoffier avatar Jul 24 '20 11:07 escoffier