【go】beego orm 如何使用反射获取匿名字段的功能?
问题:
beedb 中有这样的一种功能
type SQLModel struct {Id int `beedb:"PK" sql:"id"`
Created time.Time `sql:"created"`
Modified time.Time `sql:"modified"`
}
type User struct {
SQLModel `sql:",inline"`
Name string `sql:"name" tname:"fn_group"`
Auth int `sql:"auth"`
}
// the SQL table “User” has the columns: id, name, auth, created, modified
// They are marshalled and unmarshalled automatically because of the inline keyword
我想请问一下,beego orm里面需要怎样实现这种功能
尝试了rel可是不行
自从beego1.6.2开始就支持反射匿名函数,使用方法很简单,如下
from 傅小黑
另外,rel是关联不是组合
回答
以上是 【go】beego orm 如何使用反射获取匿名字段的功能? 的全部内容, 来源链接: utcz.com/a/112560.html