MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Mongoose füllt Sub-Sub-Dokument

Eine weitere Möglichkeit (einfacher), dies zu tun:

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