mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 21:26:59 +00:00
d805fafbfc
* docs: relation-repository * docs: has many repository * docs: acl * docs: acl * docs: acl * docs: acl * docs: acl/AllowManager * docs: acl/ACLAvailableAction * docs: acl * docs: clean up * feat: doc menus Co-authored-by: chenos <chenlinxh@gmail.com>
1.3 KiB
1.3 KiB
RelationRepository
RelationRepository
是关系类型的 Repository
对象,RelationRepository
可以实现在不加载关联的情况下对关联数据进行操作。基于 RelationRepository
,每种关联都派生出对应的实现,分别为
HasOneRepository
HasManyRepository
BelongsToRepository
BelongsToManyRepository
构造函数
签名
constructor(sourceCollection: Collection, association: string, sourceKeyValue: string | number)
参数
参数名 | 类型 | 默认值 | 描述 |
---|---|---|---|
sourceCollection |
Collection |
- | 关联中的参照关系(referencing relation)对应的 Collection |
association |
string |
- | 关联名称 |
sourceKeyValue |
string | number |
- | 参照关系中对应的 key 值 |
基类属性
db: Database
数据库对象
sourceCollection
关联中的参照关系(referencing relation)对应的 Collection
targetCollection
关联中被参照关系(referenced relation)对应的 Collection
association
sequelize 中的与当前关联对应的 association 对象
associationField
collection 中的与当前关联对应的字段
sourceKeyValue
参照关系中对应的 key 值