Mongodb,mongoimport,未捕获的异常:SyntaxError:意外的标记:标识符:@(shell):1:15

Mongodb,mongoimport,未捕获的异常:SyntaxError:意外的标记:标识符:@(shell):1:15

在 MongoDB 数据库中导入 csv 文件时出现以下错误。

命令:

mongoimport -d test -c FAQ --drop --type csv --file C:\Users\KUMA\Desktop\FAQ.csv --headerline --host localhost:27017 --authenticationDatabase admin --username 'iamauser' --password 'pwd123'

error:
2019-10-25T16:00:21.044-0700 E  QUERY    [js] uncaught exception: SyntaxError: unexpected token: identifier :
@(shell):1:15

答案1

您需要在命令提示符中导航到导入mongo文件文件存在。然后尝试运行以下命令,您还应该将 .json 文件放在同一目录中。

mongoimport --jsonArray --db test --collection FAQ --file FAQ.csv

相关内容