mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
parent
9ba49fa454
commit
38c9cac578
@ -92,7 +92,7 @@ func IsEmpty(value interface{}) bool {
|
||||
// Common interfaces checks.
|
||||
// =========================
|
||||
if f, ok := value.(iTime); ok {
|
||||
if f == nil {
|
||||
if f == (*time.Time)(nil) {
|
||||
return true
|
||||
}
|
||||
return f.IsZero()
|
||||
|
@ -84,14 +84,14 @@ func (f *Field) Kind() reflect.Kind {
|
||||
// OriginalKind retrieves and returns the original reflect.Kind for Value of Field `f`.
|
||||
func (f *Field) OriginalKind() reflect.Kind {
|
||||
var (
|
||||
kind = f.Value.Kind()
|
||||
value = f.Value
|
||||
reflectType = f.Value.Type()
|
||||
reflectKind = reflectType.Kind()
|
||||
)
|
||||
for kind == reflect.Ptr {
|
||||
value = value.Elem()
|
||||
kind = value.Kind()
|
||||
for reflectKind == reflect.Ptr {
|
||||
reflectType = reflectType.Elem()
|
||||
reflectKind = reflectType.Kind()
|
||||
}
|
||||
return kind
|
||||
return reflectKind
|
||||
}
|
||||
|
||||
// Fields retrieves and returns the fields of `pointer` as slice.
|
||||
|
@ -252,6 +252,13 @@ func (v *Validator) doCheckStruct(ctx context.Context, object interface{}) Error
|
||||
case reflect.Map, reflect.Struct, reflect.Slice, reflect.Array:
|
||||
// Recursively check attribute slice/map.
|
||||
_, value = gutil.MapPossibleItemByKey(inputParamMap, field.Name())
|
||||
if value == nil {
|
||||
switch field.Kind() {
|
||||
case reflect.Map, reflect.Ptr, reflect.Slice, reflect.Array:
|
||||
// Nothing to do.
|
||||
continue
|
||||
}
|
||||
}
|
||||
v.doCheckValueRecursively(ctx, doCheckValueRecursivelyInput{
|
||||
Value: value,
|
||||
Kind: field.OriginalKind(),
|
||||
|
@ -421,3 +421,26 @@ func Test_Issue1921(t *testing.T) {
|
||||
t.Assert(err, "The Size value `10000` must be equal or lesser than 100")
|
||||
})
|
||||
}
|
||||
|
||||
// https://github.com/gogf/gf/issues/2011
|
||||
func Test_Issue2011(t *testing.T) {
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
type Student struct {
|
||||
Name string `v:"required|min-length:6"`
|
||||
Age int
|
||||
}
|
||||
type Teacher struct {
|
||||
Student *Student
|
||||
}
|
||||
var (
|
||||
teacher = Teacher{}
|
||||
data = g.Map{
|
||||
"student": g.Map{
|
||||
"name": "john",
|
||||
},
|
||||
}
|
||||
)
|
||||
err := g.Validator().Assoc(data).Data(teacher).Run(ctx)
|
||||
t.Assert(err, "The Name value `john` length must be equal or greater than 6")
|
||||
})
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user