我有一个架构:
trip : {
source,
destination,
startTime,
endTime
}
and this schema is part of another Schema
tripSchema : {
userId ,
driverId,
trips : [trip]
}
现在我特别想要mongoose中来自旅行模式的源和目的地。我如何实现这一目标?
答案 0 :(得分:0)
你这样做是通过给予
var projection = {
'trips.startTime' : false,
'trips.endTime' :false,
};
然后
CollectionName.find({query}, projection, function(err, result){
});
希望这有助于某人