如何在autopopulate中从查询中选择填充字段

时间:2018-06-05 15:14:43

标签: mongodb mongoose mongoose-populate auto-populate

我想从查询中选择人口字段,但我仍然得到所有字段。有什么方法可以实现这个目标吗?

```

Chat.find({ "bot_user": req.params.botuserId })
 .populate({
   path: 'bot_response',
   model: 'Child',
   select: 'plugin_id'
 })
 .exec((err,result) => {
  if (err) {
   res.status(500).send({ error: 'Something failed!' })
   deferred.reject(err)
  } else {
   res.json(result)
   deferred.resolve(result);
  }
})

```

0 个答案:

没有答案