我有一个 Mongoose 模式,其中包含一个对象数组lists
,其中包含对另一个集合的引用和一个嵌套的数字数组:
var Schema, exports, mongoose, schema;
mongoose = require("mongoose");
Schema = mongoose.Schema;
schema = new Schema({
name: {
type: String,
required: true,
unique: true,
trim: true
},
lists: [
{
list: {
type: Schema.ObjectId,
require: true,
ref: "List"
},
allocations: [
{
type: Number,
required: true
}
]
}
],
createdAt: {
type: Date,
"default": Date.now
},
updatedAt: {
type: Date
}
});
exports = module.exports = mongoose.model("Portfolio", schema);
但是,如果populate
没有TypeError: Cannot read property 'ref' of undefined
. 我已经尝试过populate('list')
,populate('lists list')
但我要么没有正确调用事物,要么我的架构没有正确形成。如果我只是自己引用列表,我没有这个问题:
lists: [
{
type: Schema.ObjectId,
require: true,
ref: "List"
}
]
但我想在每个列表旁边都有分配数组。我需要做什么才能获得我想要的行为?