实体关联与自身的一对多关系

时间:2018-04-29 00:22:02

标签: go model associations one-to-many go-gorm

我使用GORM在Golang中构建模型关联,我有一个名为 Category 的结构。一个类别可以有许多子类别,它可能有一个父类别:

type Category struct {
 Name string `json:"name"`
 Parent Category `json:"parent_category"`
 ParentGroupID uint `json:"parent_group_id"`
 Children []Category `json:"children_categories"`
}

对于这个结构,我收到无效的递归类型类别的错误。我检查了GORM文档但没有找到任何帮助。有关如何使用GORM模拟这种关系的任何想法吗?

1 个答案:

答案 0 :(得分:2)

您必须将Parent声明为*Category(指向Category),而不是Category

type Category struct {
 Name string `json:"name"`
 Parent *Category `json:"parent_category"`
 ParentGroupID uint `json:"parent_group_id"`
 Children []Category `json:"children_categories"`
}

编译器如何知道Parent的大小。指针的大小是已知的,但包含自身的东西有多大? (并且内部结构也包含自身,内部结构也是如此,等等。)

参考:https://stackoverflow.com/a/8261789/4794989