1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00
This commit is contained in:
John Guo 2023-02-07 11:37:39 +08:00 committed by GitHub
parent 9ba49fa454
commit 38c9cac578
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 7 deletions

View File

@ -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()

View File

@ -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.

View File

@ -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(),

View File

@ -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")
})
}