我有一个MongooseJS架构,其中父文档引用一组子文档:
var parentSchema = mongoose.Schema({
items : [{ type: mongoose.Schema.Types.ObjectId, ref: 'Item', required: true }],
...
});
为了进行测试,我想在父文档中使用一些虚拟值填充item数组,而不将它们保存到MongoDB:
var itemModel = mongoose.model('Item', itemSchema);
var item = new itemModel();
item.Blah = "test data";
但是,当我尝试将此对象推入数组时,只存储_id:
parent.items.push(item);
console.log("...parent.items[0]: " + parent.items[0]);
console.log("...parent.items[0].Blah: " + parent.items[0].Blah);
输出:
...parent.items[0]: 52f2bb7fb03dc60000000005
...parent.items[0].Blah: undefined
我能以某种方式做相当于`.populate(‘items’)吗? (即:从MongoDB中读取文档时填充数组的方式)
解决方法:
在您的问题详细信息中,您自己的调查显示您正在推送文档,因为您可以找到它的_id值.但这不是实际问题.请考虑以下代码:
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
mongoose.connect('mongodb://localhost/nodetest')
var childSchema = new Schema({ name: 'string' });
//var childSchema = new Schema();
var parentSchema = new Schema({
children: [childSchema]
});
var Parent = mongoose.model('Parent', parentSchema);
var parent = new Parent({ children: [{ name: 'Matt' }, { name: 'Sarah'}] });
var Child = mongoose.model('Child', childSchema);
var child = new Child();
child.Blah = 'Eat my shorts';
parent.children.push(child);
parent.save();
console.log( parent.children[0].name );
console.log( parent.children[1].name );
console.log( parent.children[2] );
console.log( parent.children[2].Blah );
因此,如果问题现在不突出,请将注释行换成childSchema的定义.
// var childSchema = new Schema({ name: 'string' });
var childSchema = new Schema();
现在,这显然表明没有定义任何访问者,这引起了质疑:
“你的架构中是否定义了’Blah’访问器?”
所以它要么没有,要么在那里的定义中存在类似的问题.