User我正在尝试在s 和s之间建立关联PredictionsBag。我的问题是,如果我使用 GORM 的假定名称来引用对象,一切都会正常,但我想稍微更改一下名称。
type User struct {
gorm.Model
// We’ll try not using usernames for now
Email string `gorm:"not null;unique_index"`
Password string `gorm:"-"`
PasswordHash string `gorm:"not null"`
Remember string `gorm:"-"` // A user’s remember token.
RememberHash string `gorm:"not null;unique_index"`
Bags []PredictionsBag
}
当然,每个用户都拥有零个或多个PredictionsBags:
type PredictionsBag struct {
gorm.Model
UserID uint // I want this to be "OwnerID"
Title string
NotesPublic string `gorm:"not null"` // Markdown field. May be published.
NotesPrivate string `gorm:"not null"` // Markdown field. Only for (private) viewing and export.
Predictions []Prediction
}
我想以.Related()通常的方式工作:
func (ug *userGorm) ByEmail(email string) (*User, error) {
var ret User
matchingEmail := ug.db.Where("email = ?", email)
err := first(matchingEmail, &ret)
if err != nil {
return nil, err
}
var bags []PredictionsBag
if err := ug.db.Model(&ret).Related(&bags).Error; err != nil {
return nil, err
}
ret.Bags = bags
return &ret, nil
}
我的问题是,我无法找到一种方法来更改PredictionsBag.UserID为其他任何内容,并且仍然让 GORM 弄清楚所涉及的关系。我一直在阅读http://gorm.io/docs/has_many.html#Foreign-Key如果我将相关行更改为
type User struct {
// …
Bags []PredictionsBag `gorm:"foreignkey:OwnerID"`
}
和
type PredictionsBag struct {
// …
OwnerID uint
// …
}
我收到此错误:
[2019-07-28 14:23:49] invalid association []
我究竟做错了什么?我也一直在阅读http://gorm.io/docs/belongs_to.html,但我不确定应该更密切地关注哪个页面。
largeQ
相关分类