mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 18:40:55 +00:00
Merge pull request #716 from 4eek/docfix-validations-HasErrors
Fixed docs: HasErrors is a method not a variable
This commit is contained in:
commit
509af636b1
@ -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