1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
This commit is contained in:
John Guo 2022-04-11 17:58:07 +08:00
parent f1fee72d6d
commit f9a3fa3c23
2 changed files with 14 additions and 10 deletions

View File

@ -4256,6 +4256,7 @@ func Test_Model_Issue1700(t *testing.T) {
UserId: 3, UserId: 3,
}).Insert() }).Insert()
t.AssertNil(err) t.AssertNil(err)
one, err := db.Model(table).One() one, err := db.Model(table).One()
t.AssertNil(err) t.AssertNil(err)
t.Assert(one, g.Map{ t.Assert(one, g.Map{
@ -4263,11 +4264,14 @@ func Test_Model_Issue1700(t *testing.T) {
"user_id": 2, "user_id": 2,
"UserId": 3, "UserId": 3,
}) })
var user *User
err = db.Model(table).Scan(&user) for i := 0; i < 1000; i++ {
t.AssertNil(err) var user *User
t.Assert(user.Id, 1) err = db.Model(table).Scan(&user)
t.Assert(user.Userid, 2) t.AssertNil(err)
t.Assert(user.UserId, 3) t.Assert(user.Id, 1)
t.Assert(user.Userid, 2)
t.Assert(user.UserId, 3)
}
}) })
} }

View File

@ -84,12 +84,12 @@ func IsMap(value interface{}) bool {
// IsStruct checks whether `value` is type of struct. // IsStruct checks whether `value` is type of struct.
func IsStruct(value interface{}) bool { func IsStruct(value interface{}) bool {
var ( var (
reflectValue = reflect.ValueOf(value) reflectType = reflect.TypeOf(value)
reflectKind = reflectValue.Kind() reflectKind = reflectType.Kind()
) )
for reflectKind == reflect.Ptr { for reflectKind == reflect.Ptr {
reflectValue = reflectValue.Elem() reflectType = reflectType.Elem()
reflectKind = reflectValue.Kind() reflectKind = reflectType.Kind()
} }
switch reflectKind { switch reflectKind {
case reflect.Struct: case reflect.Struct: