我在猫鼬中有以下方案
var Schema = mongoose.Schema;
var CellSchema = new Schema({
foo: Number,
});
CellSchema.methods.fooMethod= function(){
return 'hello';
};
var GameSchema = new Schema({
field: [CellSchema]
});
如果创建新文档,如:
var cell = new CellModel({foo: 2})
var game = new GameModel();
game.field.push(cell);
game.field[0].fooMethod();
它正常工作。但是如果你运行这段代码:
GameModel.findOne({}, function(err, game) {
console.log(game);
game.field[0].fooMethod()
})
我得到TypeError:game.field [0] .fooMethod不是一个函数 和控制台日志是
{
field:
[ { foo: 2,
_id: 5675d5474a78f1b40d96226d }
]
}
如何使用所有架构方法正确加载子文档?
答案 0 :(得分:1)
在定义父模式之前,必须在嵌入式模式上定义方法。
此外,您必须引用CellSchema
而不是'Cell'
var CellSchema = new Schema({
foo: Number,
});
CellSchema.methods.fooMethod = function() {
return 'hello';
};
var GameSchema = new Schema({
field: [CellSchema]
});