findOne - '指定要返回的字段'不起作用?

时间:2017-08-29 10:25:43

标签: node.js mongodb

根据doc,这是'指定要返回的字段'的方式:

collectionUsers.findOne(
  options,
  // Specify the Fields to Return
  { name: 1, id: 1 } // this does not work

  // Return All but the Excluded Fields
  // { _id: 0 } // this works
)

但它不起作用,因为我仍然在我的结果中得到_id,例如:

{"_id":"59a53ded3a35535198135b17","id":null,"name":"jona"}

这就是我所期望的,例如:

{"id":null,"name":"jona"}

有什么想法吗?

0 个答案:

没有答案