Mongoose 3.xを使用している場合は、リーンを使用できます。コード>
これを行うためのクエリオプション:
Collection.find({name: 'Erik'}).lean().exec(function (err, docs) {
// docs are plain javascript objects instead of model instances
});
Mongoose 3.xを使用している場合は、リーンを使用できます。コード>
これを行うためのクエリオプション:
Collection.find({name: 'Erik'}).lean().exec(function (err, docs) {
// docs are plain javascript objects instead of model instances
});