1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

fix: gutil.IsSlice judgment logic error (#2910)

This commit is contained in:
the harder the luckier 2023-09-04 20:09:55 +08:00 committed by GitHub
parent e60262fec9
commit 3da5e5e865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -57,6 +57,7 @@ func IsSlice(value interface{}) bool {
)
for reflectKind == reflect.Ptr {
reflectValue = reflectValue.Elem()
reflectKind = reflectValue.Kind()
}
switch reflectKind {
case reflect.Slice, reflect.Array:

View File

@ -9,8 +9,10 @@ package utils_test
import (
"testing"
"github.com/gogf/gf/v2/container/gvar"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/internal/utils"
"github.com/gogf/gf/v2/os/gtime"
"github.com/gogf/gf/v2/test/gtest"
)
@ -124,6 +126,9 @@ func TestVar_IsSlice(t *testing.T) {
t.Assert(utils.IsSlice(int8(1)), false)
t.Assert(utils.IsSlice(uint8(1)), false)
})
gtest.C(t, func(t *gtest.T) {
t.Assert(utils.IsSlice(gvar.New(gtime.Now()).IsSlice()), false)
})
}
func TestVar_IsMap(t *testing.T) {