亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《GORM v2 外键上的多对多错误》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下,希望所有认真读完的童鞋们,都有实质性的提高。问题内容
亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《GORM v2 外键上的多对多错误》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下,希望所有认真读完的童鞋们,都有实质性的提高。
问题内容我发现在以下情况下很难使用 Gorm 定义多对多关系
features(feature_id, name, slug)
operations(operation_id, name, slug)
feature_operations(feature_id, operation_id)
type Feature struct {
FeatureID int64 `gorm:"primaryKey;column:feature_id" JSON:"feature_id"`
Name string `validate:"required" json:"name"`
Slug string `json:"slug"`
Status string `json:"status"`
Operations []Operation `gorm:"many2many:feature_operations;foreignKey:feature_id"`
appModels.BaseModel
}
使用 feature_id
时,出现错误
列 feature_operations.feature_feature_id 不存在
使用 id
时,出现错误
无效的外键:id
看起来您没有使用 gorm 建议的约定,将主键列命名为 id
因此,在您的情况下,您的 foreignkey
应该是字段的名称,您还需要使用 references
来指定要引用的列。请参阅此处的示例:
https://gorm.io/docs/many_to_many.html#Override-Foreign-Key
您需要的是:
type Feature struct {
FeatureID int64 `gorm:"primaryKey;column:feature_id"`
Name string
Slug string
Operations []Operation `gorm:"many2many:feature_operations;foreignKey:FeatureID;References:OperationID"`
}
type Operation struct {
OperationID int64 `gorm:"primaryKey;column:operation_id"`
Name string
Slug string
}
此后,连接表将是 feature_operations
,其中包含两列 feature_feature_id
和 operation_operation_id
如果您不喜欢冗余的列名称,那么您需要使用两个附加属性 joinforeignkey
和 joinreferences
来为列选择您自己的名称,如下所示:
gorm:"many2many:feature_operations;foreignkey:featureid;joinforeignkey:featureid;references:operationid;joinreferences:operationid"
需要所有这些额外的工作,因为您的主键是 feature_id
和 operation_id
而不仅仅是 id
如果您可以重命名该列以遵循约定,您会发现 gorm 的生活变得更加轻松
本篇关于《Gorm v2 外键上的多对多错误》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于golang的相关知识,请关注编程网公众号!
--结束END--
本文标题: Gorm v2 外键上的多对多错误
本文链接: https://lsjlt.com/news/596743.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0