猫鼬在每个具有查找功能的文档上选择特定字段

时间:2019-10-10 20:56:21

标签: mongodb mongoose

我知道如何为所有找到的文档选择特定字段

User.find({ company: 'Google' }, 'name company')

但是如何为每个文档选择特定字段,例如:

User.find({ company: 'Google' }, (user) => {
  if (user.name === 'Mike') {
    return 'name company'
  }

  return 'name'
})

0 个答案:

没有答案