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:
parent
e60262fec9
commit
3da5e5e865
@ -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:
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user