1

所以我正在使用 NestJs 和 Typegoose 构建一个后端,具有以下模型:

@modelOptions({ schemaOptions: { collection: 'user_department', toJSON: { virtuals: true }, toObject: { virtuals: true }, id: false } })
export class Department {

    @prop({ required: true })
    _id: mongoose.Types.ObjectId;

    @prop({ required: true })
    name: string;

    @prop({ ref: () => User, type: String })
    public supervisors: Ref<User>[];

    members: User[];

    static paginate: PaginateMethod<Department>;
}

用户

@modelOptions({ schemaOptions: { collection: 'user' } })
export class User {

    @prop({ required: true, type: String })
    _id: string;

    @prop({ required: true })
    userName: string;

    @prop({ required: true })
    firstName: string;

    @prop({ required: true })
    lastName: string;

    [...]

    @prop({ ref: () => Department, default: [] })
    memberOfDepartments?: Ref<Department>[];

    static paginate: PaginateMethod<User>;
}

正如您可能猜到的,一个用户可能在多个部门,一个部门可以有多个成员(用户)。由于部门的数量或多或少受到限制(与用户相比),我决定使用一种方式嵌入,如下所述:两种方式嵌入与 MongoDB 中的一种方式嵌入(多对多)。这就是用户持有数组“memberOfDepartments”的原因,但部门不保存成员数组(因为缺少@prop)。

第一个问题是,当我请求 Department-object 时,如何查询它的成员?查询必须查找department._id 在数组memberOfDepartments 中的用户。

我在这里尝试了多种东西,例如虚拟填充:https://typegoose.github.io/typegoose/docs/api/virtuals/#virtual-populate在 department.model 上像这样:

@prop({
    ref: () => User,
    foreignField: 'memberOfDepartments', 
    localField: '_id', // compare this to the foreign document's value defined in "foreignField"
    justOne: false
})
public members: Ref<User>[];

但它不会输出该属性。我的猜测是,这仅适用于一个站点上的一对多...我也尝试使用 set/get,但在使用 DepartmentModel 中的 UserModel 时遇到了麻烦。

目前我在服务中这样做是在“作弊”:

async findDepartmentById(id: string): Promise<Department> {
    const res = await this.departmentModel
        .findById(id)
        .populate({ path: 'supervisors', model: User })
        .lean()
        .exec();

    res.members = await this.userModel.find({ memberOfDepartments: res._id })
        .lean()
        .exec()

    if (!res) {
        throw new HttpException(
            'No Department with the id=' + id + ' found.',
            HttpStatus.NOT_FOUND,
        );
    }
    return res;
}

..但我认为这不是正确的解决方案,因为我猜它属于模型。

第二个问题是,我将如何处理一个部门的删除,导致我必须删除对该部门的引用。在用户?

我知道那里有 mongodb 和 mongoose 的文档,但我无法理解如何“以 typegoose 方式”完成此操作,因为 typegoose 文档对我来说似乎非常有限。任何提示表示赞赏。

4

1 回答 1

3

所以,这不容易找到,希望这个答案对其他人有所帮助。我仍然认为有必要记录更多的基本内容——比如在对象被删除时删除对对象的引用。就像,任何有参考资料的人都需要这个,但在任何文档(typegoose、mongoose、mongodb)中都没有给出完整的例子。

答案1:

@prop({
    ref: () => User,
    foreignField: 'memberOfDepartments', 
    localField: '_id', // compare this to the foreign document's value defined in "foreignField"
    justOne: false
})
public members: Ref<User>[];

正如问题中的那样,这是定义虚拟的正确方法。但我做错了什么,我认为并不那么明显:我不得不打电话

.populate({ path: 'members', model: User })

明确如

 const res = await this.departmentModel
            .findById(id)
            .populate({ path: 'supervisors', model: User })
            .populate({ path: 'members', model: User })
            .lean()
            .exec();

如果您不这样做,您将根本看不到属性成员。我有这个问题,因为如果你在像主管这样的参考字段上这样做,你至少会得到一个数组 ob objectIds。但是,如果你不填充虚拟,你就不会得到任何成员字段。

答案 2: 我的研究使我得出结论,最好的解决方案是使用预挂钩。基本上,您可以定义一个函数,该函数在执行特定操作之前(如果您想要之后,使用后挂钩)被调用。就我而言,操作是“删除”,因为我想在删除文档本身之前删除引用。你可以用这个装饰器在 typegoose 中定义一个 pre-hook,只要把它放在你的模型前面:

@pre<Department>('deleteOne', function (next) {
    const depId = this.getFilter()["_id"];
    getModelForClass(User).updateMany(
        { 'timeTrackingProfile.memberOfDepartments': depId },
        { $pull: { 'timeTrackingProfile.memberOfDepartments': depId } },
        { multi: true }
    ).exec();
    next();
})
export class Department {
[...]   
}

在我的研究中发现的许多灵魂提示都使用了“remove”,当您调用 fe departmentmodel.remove() 时会调用它。不要使用它,因为 remove() 已被弃用。请改用“deleteOne()”。用 "const depId = this.getFilter()["_id"];" 您可以访问将在操作中删除的文档的 ID。

于 2020-11-12T12:53:41.380 回答