1

使用 MongoDB v3.0.3。运行 db.grades.explain().find() 时遇到问题 - 我不断收到消息“TypeError: db.grades.explain is not a function (shell):1”

但是,我可以使用 db.grades.find().explain() - 但是使用此方法返回的信息不如 collection.explain() 有用

4

1 回答 1

2

原来,这是因为我使用的是 Robomongo(0.8.5 版),我只是假设你可以在 shell 中做的所有事情,你都可以在 Robomongo 中做,但显然不是。当我切换到使用命令行时, db.collection.explain() 工作得很好。

于 2015-08-26T15:18:21.827 回答