【发布时间】:2021-05-11 07:54:30
【问题描述】:
谁能告诉我如何在组内推送数据?
产品架构
const productSchema = new mongoose.Schema({
name:{
type:String
},
user:[{
author:{
type: mongoose.Schema.Types.ObjectId,
ref: 'user'
}
}],
group:[{
group:{
type: mongoose.Schema.Types.ObjectId,
ref: 'group',
item:{
type: mongoose.Schema.Types.ObjectId,
ref: 'item',
}
}
}],
price:{
type:number
},
});
productSchema.pre<IProduct>(/^find/, function(next) {
this.populate({
path: 'user.author',
select: 'fullName email'
});
next();
});
productSchema.pre<IProductSchema>(/^find/, function(next) {
this.populate({
path: 'group.group',
select: '-__v'
})
next();
});
productSchema.pre<IProductSchema>(/^find/, function(next) {
this.populate({
path: 'group.group.item',
select: '-__v -group'
})
next();
});
我成功填充了 group.group 但在 group.group.item 我无法推送数据,这是我的推送代码。
const updateProduct = await PRODUCT.findByIdAndUpdate(req.params.id, {
$push: {
group: { group: req.params.groupId}
}
}
);
const query = await Item.find().where(`group`).equals(req.params.groupId).select('-group id');
query.forEach(async element => {
const updateProduct = await PRODUCT.findByIdAndUpdate(req.params.id, {
$push: {
group: {"group.item": 'element._id'}}
}
);
});
我花了最后几个小时试图找到解决方案,但不幸的是我无法找到它。希望有人能帮助我。
祝你有美好的一天!
【问题讨论】:
标签: javascript node.js mongodb mongoose mongoose-populate