根据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"}
有什么想法吗?