如何在Mongoose中嵌入模式中的特定元素

时间:2016-01-05 15:34:58

标签: mongodb mongoose

我有一个架构:

trip : {
source,
destination,
startTime,
endTime
}

and this schema is part of another Schema
tripSchema : {
userId ,
driverId,
trips : [trip]
}

现在我特别想要mongoose中来自旅行模式的源和目的地。我如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

你这样做是通过给予

var projection = {
    'trips.startTime' : false,
    'trips.endTime' :false,  
    };

然后

CollectionName.find({query}, projection, function(err, result){
});

希望这有助于某人