mongoimport --db test --collection collection1 --file c:/test.json
我在执行上述命令时遇到了SyntaxError:意外的标识符。
这个脚本有什么问题?
非常感谢
答案 0 :(得分:4)
当我尝试从MongoDB Shell导入json文件时,我遇到了同样的问题 您可以从命令提示符中查询它 我的目录结构:
C:\Program files\MongoDB\Server\3.0\bin\mongoimport.exe
C:\filename.json
e.g。
C:\Program Files\MongoDB\Server\3.0\bin> ./mongoimport --db dbname --collection collection_name C:\filename.json
输出应为:
2015-08-18T09:34:25.617-0700 connected to: localhost
2015-08-18T09:34:25.632-0700 imported 10 documents
现在切换回MongoDB Shell:
C:\Program Files\MongoDB\Server\3.0\bin> ./mongo
use dbname
db.collection_name.find().pretty()
答案 1 :(得分:0)
此处的一个问题可能是您没有在计算机上正确设置PATH。如果您使用的是Windows 10 -