猫鼬填充子文档数组
Mongoose populating array of subdocuments
抱歉,如果有人问过这个问题,我的搜索没有出现同样的情况。我有两个类似下面的模式:
var experimentSchema = new mongoose.Schema({
name : 'string'
elements : [{
type : mongoose.Schema.ObjectId,
ref: 'Element'
}],
resources : [{
type : mongoose.Schema.ObjectId,
ref : 'Resource'
}],
})
var elementSchema = new mongoose.Schema({
name : 'string',
component : {
type : mongoose.Schema.ObjectId,
ref : 'Component'
}
})
我想进行深度填充,这样当我请求一个实验时,我会得到一个包含 elements
和 resources
数组的对象,每个元素的字段 component
也已填充。
我尝试了一些类似的方法:
Experiment.findOne(query).populate(['resources','elements','elements.component']).exec(...)
没有成功。任何人都可以为这种类型的操作提供正确的语法吗?
提前致谢!
希望对您有所帮助。
models.User.findOne(query)
.populate([{
path: 'elements',
populate: {
path: 'components',
model: 'Component'
}
},{
path:'resources'
}])
.exec(...)
抱歉,如果有人问过这个问题,我的搜索没有出现同样的情况。我有两个类似下面的模式:
var experimentSchema = new mongoose.Schema({
name : 'string'
elements : [{
type : mongoose.Schema.ObjectId,
ref: 'Element'
}],
resources : [{
type : mongoose.Schema.ObjectId,
ref : 'Resource'
}],
})
var elementSchema = new mongoose.Schema({
name : 'string',
component : {
type : mongoose.Schema.ObjectId,
ref : 'Component'
}
})
我想进行深度填充,这样当我请求一个实验时,我会得到一个包含 elements
和 resources
数组的对象,每个元素的字段 component
也已填充。
我尝试了一些类似的方法:
Experiment.findOne(query).populate(['resources','elements','elements.component']).exec(...)
没有成功。任何人都可以为这种类型的操作提供正确的语法吗?
提前致谢!
希望对您有所帮助。
models.User.findOne(query)
.populate([{
path: 'elements',
populate: {
path: 'components',
model: 'Component'
}
},{
path:'resources'
}])
.exec(...)