MongoDB - 如何使用shell查看集合中的所有内容?

时间:2014-11-17 02:12:32

标签: mongodb

我部署了一个测试应用(http://meteortipslinda2.meteor.com/)并添加了account-facebook。但是,Facebook登录不起作用,因为我可能输入了错误的API密钥。

我知道我可以使用meteor mongo meteortipslinda2.meteor.com访问shell,但我对如何查看这些集合中的所有内容感到茫然:

meteor_accounts_loginServiceConfiguration meteor_oauth_pendingCredentials meteor_oauth_pendingRequestTokens

我假设我可以将值更新为mongoDB shell中的正确值,但首先我需要弄清楚如何查看集合的内容。

1 个答案:

答案 0 :(得分:1)

要列出集合中的所有文档,只需调用不带任何参数的find。

db.myCollection.find()

如果有很多文件,它会批量处理。然后,您可以通过键入it来显示下一批。