1、
gorm查询结果是一个结构体模型数据
type Merchant struct {
Id int `json:"id" gorm:"comment:''"`
Username string `json:"username" gorm:"comment:'用户名'"`
Password string `json:"password" gorm:"comment:'密码'"`
……
}
2、
我将结构体模型数据过滤Password字段,只返回username字段
3、
我除了自己创建一个map,然后循环gorm查询结果,一行一行填充有没有其他办法
m := map[string]interface{}{}
for _, item := range row {
m["username"]=row.Username
……
}
2.使用一个仅包含部分字段的结构体去接收查询结果