我在这里缺少什么?导入了300个对象,但我看不到它们的find()
导入JSON文件:
mongoimport --host localhost -db foo -collection bar --file onebigline.json
connected to: localhost
Tue Sep 11 10:36:58 imported 300 objects
MongoDB shell version: 2.2.0
启动Mongo
connecting to: test
> show dbs
foo 0.203125GB
local (empty)
> use foo
switched to db foo
显示db foo
中导入的JSON数据> db.foo.find()
>
答案 0 :(得分:4)
mongoimport
命令中的集合名称为bar
,而非foo
,请尝试:
> db.bar.find()