MongoDB 没有返回数据

MongoDB not returning the Data

我使用 MongoDB 创建了一个名为 mydb 的数据库。 然后我创建了一个名为 coll3

的集合
use mydb
db.coll3.insert({"1":"HI"})

当我这样做时

db.coll3.find()

我收到这个错误

Couldn't retrieve documents

java.lang.IllegalStateException cannot be cast to t3.utils.document.g

您需要将查询对象(return 所有文档的空对象)传递给查找函数:

db.coll3.find({})

Refer to the MongoDB documentation.

尝试:

 db.getCollection('coll3').find({})