beego orm 映射坑

beego的orm映射字段注意事项


在作beego练习时,发现输入用户名和密码,mysql一直返回错误。通过打印日志与tcpdump抓包,发现 “Unknown error 1054” 错误提示。

自定义用户结构体如下:
type User struct {
Id int
Username string
Password string
Email string
LoginCount int //注意此处有个驼峰格式的字段名称
LastTime time.Time //注意此处有个驼峰格式的字段名称
LastIp string //注意此处有个驼峰格式的字段名称
State int8
Created time.Time
Updated time.Time
}
通过tcpdump抓取查询时的语句,发现beego做了如下变动:
beego orm 映射坑_第1张图片
带有驼峰的字段,beego都默认作了分割处理,中间加了“_"下划线。
通过加入orm tag可以解决,格式如下:

type User struct {
Id int
Username string
Password string
Email string
LoginCount int `orm:“column(logincount)”`
LastTime time.Time `orm:“column(lasttime)”`
LastIp string `orm:“column(lastip)”`
State int8
Created time.Time
Updated time.Time
}

你可能感兴趣的:(golang,beego)