如何在nestjs mongoose typescript中引用嵌套文档
how to reference nested documents in nestjs mongoose typescript
我是 nestjs 的新手。我使用 @nestjs/mongoose
,我需要在我的 class 模式中引用嵌套对象中的几个字段,但我不知道该怎么做。
dietDays
对象必须包含一个日期字段和包含对 Meal
架构的 2 个引用的膳食对象。
正确的做法是什么?
下面的代码显示了我是如何尝试这样做的,以及我尝试的另一种方法是创建 dietDays
class 并将其传递给 Prop 类型变量,但在那种情况下我我无法引用 Meal
模式,因为那不是模式。
@Schema()
export class Diet {
@Prop({ default: ObjectID })
_id: ObjectID
@Prop()
dietDays: [
{
date: string
meals: {
breakfast: { type: Types.ObjectId; ref: 'Meal' }
lunch: { type: Types.ObjectId; ref: 'Meal' }
}
},
]
}
您应该按照以下步骤操作:
创建一个 class 来引用饮食中的每一天(逻辑上有意义)
@Schema()
export class DayInDiet {
@Prop() date: string;
@Prop()
meals:
{
breakfast: { type: Types.ObjectId, ref: 'breakfast' }
launch: { type: Types.ObjectId, ref: 'launch' }
}
}
知道 breakfast
和 lunch
中的每一个都应该是有效的 mongo 模式。
如果 breakfast
和 lunch
不是模式,并且您有一个内容列表,您可以将此数组作为模式对象内的可能选项传递给它们。
另一种可能的方式
@Schema()
export class DayInDiet {
@Prop() date: string;
@Prop()
meals: [
{ type: Types.ObjectId, ref: 'meal' } // note that meal should be the name of your schema
]
}
@Schema()
export class Meal {
@Prop() name: string;
@Prop() type: 'launch' | 'breakfast'
}
请注意,您不需要将 _id 设为任何架构的道具
编辑
对于饮食方案
@Schema()
export class Diet {
// list of props
// ...
@Prop()
dietDays: [
{ type: Types.ObjectId, ref: 'DayInDiet' }
]
}
我是 nestjs 的新手。我使用 @nestjs/mongoose
,我需要在我的 class 模式中引用嵌套对象中的几个字段,但我不知道该怎么做。
dietDays
对象必须包含一个日期字段和包含对 Meal
架构的 2 个引用的膳食对象。
正确的做法是什么?
下面的代码显示了我是如何尝试这样做的,以及我尝试的另一种方法是创建 dietDays
class 并将其传递给 Prop 类型变量,但在那种情况下我我无法引用 Meal
模式,因为那不是模式。
@Schema()
export class Diet {
@Prop({ default: ObjectID })
_id: ObjectID
@Prop()
dietDays: [
{
date: string
meals: {
breakfast: { type: Types.ObjectId; ref: 'Meal' }
lunch: { type: Types.ObjectId; ref: 'Meal' }
}
},
]
}
您应该按照以下步骤操作:
创建一个 class 来引用饮食中的每一天(逻辑上有意义)
@Schema()
export class DayInDiet {
@Prop() date: string;
@Prop()
meals:
{
breakfast: { type: Types.ObjectId, ref: 'breakfast' }
launch: { type: Types.ObjectId, ref: 'launch' }
}
}
知道 breakfast
和 lunch
中的每一个都应该是有效的 mongo 模式。
如果 breakfast
和 lunch
不是模式,并且您有一个内容列表,您可以将此数组作为模式对象内的可能选项传递给它们。
另一种可能的方式
@Schema()
export class DayInDiet {
@Prop() date: string;
@Prop()
meals: [
{ type: Types.ObjectId, ref: 'meal' } // note that meal should be the name of your schema
]
}
@Schema()
export class Meal {
@Prop() name: string;
@Prop() type: 'launch' | 'breakfast'
}
请注意,您不需要将 _id 设为任何架构的道具
编辑
对于饮食方案
@Schema()
export class Diet {
// list of props
// ...
@Prop()
dietDays: [
{ type: Types.ObjectId, ref: 'DayInDiet' }
]
}