Published on

gorm Select查出来是空

Authors
var unions []string
Select("union_name, msp_id").
			Where("user_name = ?", s.Username).Find(&unions)

这样查出来,unions是空的 因为Find或者Scan需要传入结构体,结构体的成员名需要匹配col名字,才能成功。