type Users struct {
Id int `orm:"pk;auto"`
Username string
Password string
Salt string
Email string `orm:"unique"`
}
type Post struct {
Id int `orm:"pk;auto"`
Users *Users `orm:"rel(fk)"`
Author string
Title string `form:"title,text,Title:" valid:"MinSize(5); MaxSize(20)"`
Description string `form:textarea`
Date time.Time `orm:"auto_now_add;type(datetime)"`
}
我正在尝试为Users
分配值,因为它是外键。我想分配登录的用户ID。如何将Users
struct中的用户id分配给Post
struct中的用户id,这是外键。
o := orm.NewOrm()
o.Using("default")
post := models.Post{}
users := models.Users{}
if this.Ctx.Input.Method() == "POST" {
inputs := this.Input()
post.Author = sess.(string)
post.Title = inputs.Get("title")
post.Description = inputs.Get("description")
post.Date = time.Now()
}
答案 0 :(得分:0)
首先,回答你的问题:
post.Date = time.Now()
// This is your last line
// Up until now all good
post.Users = &users // Actually the naming is bad, should be post.User = user
o.Insert(users) // First create user
o.Insert(post) // Then insert post
这与BeeGo ORM提供的基本示例非常相似:https://beego.me/docs/mvc/model/orm.md
在现实世界中,您会注意到大多数时间您拥有用户,并且您只想创建一次。因此,您需要先将Insert
切换为ReadOrCreate
:https://beego.me/docs/mvc/model/object.md#readorcreate
话虽如此,根据我的经验,在Go中使用MVC和ORM框架是一个坏主意。