查找后,查找不返回任何内容

时间:2015-05-15 21:56:34

标签: mongodb collections meteor

我试图了解如何使用mongo并获取特定的结果集。我觉得有点傻,因为我在互联网上找不到这么有用的东西,对大多数人来说一定是非常明显的。

如果它是可转发的,请帮助我找到合适的关键字,因为我无法通过该路线到达我需要的地方:)

record

使用{username:'Daan'}的查找找不到任何内容。 带有({})的find返回数组中的两个记录

1 个答案:

答案 0 :(得分:1)

Collection.insert只接受一份文件。试试这个:

Users.insert({username: 'Daan', password: "test2"});
Users.insert({username: 'Miranda', password: "test1"});

请注意,您可能希望使用accounts-password而非生成自己的Users集合。