Mongoose populate sub-sub document

后端 未结 9 1953
深忆病人
深忆病人 2021-01-30 03:00

I have this setup in my MongoDB

Items:

title: String
comments: [] // of objectId\'s

Comments:

user: ObjectId()
item: Ob         


        
9条回答
  •  迷失自我
    2021-01-30 03:02

    One more way (easier) to do this:

    Item
      .find({})
      .populate({
    	path:     'comments',			
    	populate: { path:  'user',
    		    model: 'users' }
      })
      .exec(function(err, data){
        if (err) return handleError(err);
        res.json(data);
    });

提交回复
热议问题