mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +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 {
|
for reflectKind == reflect.Ptr {
|
||||||
reflectValue = reflectValue.Elem()
|
reflectValue = reflectValue.Elem()
|
||||||
|
reflectKind = reflectValue.Kind()
|
||||||
}
|
}
|
||||||
switch reflectKind {
|
switch reflectKind {
|
||||||
case reflect.Slice, reflect.Array:
|
case reflect.Slice, reflect.Array:
|
||||||
|
@ -9,8 +9,10 @@ package utils_test
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/gogf/gf/v2/container/gvar"
|
||||||
"github.com/gogf/gf/v2/frame/g"
|
"github.com/gogf/gf/v2/frame/g"
|
||||||
"github.com/gogf/gf/v2/internal/utils"
|
"github.com/gogf/gf/v2/internal/utils"
|
||||||
|
"github.com/gogf/gf/v2/os/gtime"
|
||||||
"github.com/gogf/gf/v2/test/gtest"
|
"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(int8(1)), false)
|
||||||
t.Assert(utils.IsSlice(uint8(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) {
|
func TestVar_IsMap(t *testing.T) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user