Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我找到了一个解决方案,不确定它是否是最优雅的。GroundDB 似乎正在积极寻找 _id 字段并尝试将其用作选择器。我不确定什么不正确,我想这与我的 _id-field 是一个字符串有关。
以下作品虽然:
而不是简单的ExampleCol_GROUND.find({_id:"..."})
ExampleCol_GROUND.find({_id:"..."})
我现在使用“where”语句:
ExampleCol_GROUND.find({$where: function() { return this._id == "..someId.." }});