我正在尝试在同一张表上建立一个belongsTo关系。但是我无法成功。我在互联网上找不到任何容易理解的示例。
type Role struct {
gorm.Model
Name string
Description string
Inclusive bool
Controller *Role `gorm:"foreignkey:controller;association_foreignkey:id"`
SupervisedRoles []*Role `gorm:"foreignkey:Controller"`
Permissions []*Permission
}
func (r *Role) GetController() (*Role, error) {
controller := &Role{}
return controller, db.DB.Model(r).Related(controller).Error
}
func (r *Role) GetSupervisedRoles() ([]*Role, error) {
roles := []*Role{}
return roles, db.DB.Model(r).Related(roles).Error
}
在我的表中,“控制器”字段是可为空的外键,表示我的“角色”表的另一次出现。
如何使用GORM实施它?