beego 如何获取foreign key字段?
type Article struct {
Id int64
Title string
Content string `orm:"size(5000)"`
Author string
Source string
Keywords string
Overview string
Attachment string
Created time.Time `orm:"index"`
Updated time.Time `orm:"index"`
Type int64
Category *Category `orm:"rel(fk)"`
}
type Category struct {
Id int64
Name string
Created time.Time `orm:"index"`
Updated time.Time `orm:"index"`
}
各位大神们怎么搞啊?
如图beego orm增加表关系,article 的 foreign key为category。这样会在article表里自动增加一个category_id的字段。那么问题来了,比如我想修改这个article表里的category_id的字段的值,改怎么该?怎么才能获取这个category_id字段啊? 比如其他字段都是article.Title article.Author等。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
描述的不清楚