Ver Fonte

修改bug

yjp há 6 meses atrás
pai
commit
dcb6ed9746
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      reflectutils/value.go

+ 1 - 1
reflectutils/value.go

@@ -41,7 +41,7 @@ func SliceValueElem(v reflect.Value) reflect.Value {
 }
 
 func IsSliceValueOf(v reflect.Value, elementKind reflect.Kind) bool {
-	return v.Kind() == reflect.Slice && v.Elem().Kind() == elementKind
+	return v.Kind() == reflect.Slice && v.Type().Elem().Kind() == elementKind
 }
 
 func IsValueInteger(v reflect.Value) bool {