mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 08:30:54 +00:00
fix typo
hasReuired --> hasRequired
This commit is contained in:
parent
654ebebe3c
commit
0e0718d110
@ -365,10 +365,10 @@ func (v *Validation) Valid(obj interface{}) (b bool, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var hasReuired bool
|
var hasRequired bool
|
||||||
for _, vf := range vfs {
|
for _, vf := range vfs {
|
||||||
if vf.Name == "Required" {
|
if vf.Name == "Required" {
|
||||||
hasReuired = true
|
hasRequired = true
|
||||||
}
|
}
|
||||||
|
|
||||||
currentField := objV.Field(i).Interface()
|
currentField := objV.Field(i).Interface()
|
||||||
@ -382,7 +382,7 @@ func (v *Validation) Valid(obj interface{}) (b bool, err error) {
|
|||||||
|
|
||||||
|
|
||||||
chk := Required{""}.IsSatisfied(currentField)
|
chk := Required{""}.IsSatisfied(currentField)
|
||||||
if !hasReuired && v.RequiredFirst && !chk {
|
if !hasRequired && v.RequiredFirst && !chk {
|
||||||
if _, ok := CanSkipFuncs[vf.Name]; ok {
|
if _, ok := CanSkipFuncs[vf.Name]; ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user