Wenn Sie Mongoose 3.x verwenden, können Sie lean
Abfrageoption dazu:
Collection.find({name: 'Erik'}).lean().exec(function (err, docs) {
// docs are plain javascript objects instead of model instances
});
Wenn Sie Mongoose 3.x verwenden, können Sie lean
Abfrageoption dazu:
Collection.find({name: 'Erik'}).lean().exec(function (err, docs) {
// docs are plain javascript objects instead of model instances
});