mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:30:54 +00:00
Fixed docs: HasErrors is a method not a variable
This commit is contained in:
parent
cec151fda7
commit
daf8b1101f
@ -33,7 +33,7 @@ Direct Use:
|
||||
valid.Required(u.Name, "name")
|
||||
valid.MaxSize(u.Name, 15, "nameMax")
|
||||
valid.Range(u.Age, 0, 140, "age")
|
||||
if valid.HasErrors {
|
||||
if valid.HasErrors() {
|
||||
// validation does not pass
|
||||
// print invalid message
|
||||
for _, err := range valid.Errors {
|
||||
|
Loading…
Reference in New Issue
Block a user