当它是一个数字时,Meteor通过_id在MongoDB中找到一个对象

时间:2017-02-19 03:45:06

标签: mongodb meteor minimongo

我在{ _id : 0, ... }的集合中插入了一个文档,我无法使用collection.findOne({ _id : 0 })找到它,它返回undefined。从mongo shell中查询它可以正常工作。

1 个答案:

答案 0 :(得分:0)

如果collection.find(0)为0,则需要使用_id,如果_id为23123,则需要collection.find(23123)