Return certain fields with .populate() from Mongoose

前端 未结 10 1575
栀梦
栀梦 2021-01-30 10:11

I\'m getting returned a JSON value from MongoDB after I run my query. The problem is I do not want to return all the JSON associated with my return, I tried searching the docs a

10条回答
  •  佛祖请我去吃肉
    2021-01-30 10:32

    you to try :

    Post.find({_id: {$nin: [info._id]}, tags: {$in: info.tags}}).sort({_id:-1})
    .populate('uid','nm')
    .populate('tags','nm')
    .limit(20).exec();
    

提交回复
热议问题