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.
我使用名为 mydb 的 MongoDB 创建了一个数据库。然后我创建了一个名为 coll3 的集合
use mydb db.coll3.insert({"1":"HI"})
当我这样做时
db.coll3.find()
我收到这个错误
无法检索文档 java.lang.IllegalStateException 不能转换为 t3.utils.document.g
无法检索文档
java.lang.IllegalStateException 不能转换为 t3.utils.document.g
您需要将查询对象(返回所有文档的空对象)传递给 find 函数:
db.coll3.find({})
请参阅 MongoDB 文档。
尝试:
db.getCollection('coll3').find({})