0

我希望在“node-angular”的“posts”集合中导入一个包含 3 个文档的 JSON 文件。

在此处输入图像描述

我运行了以下命令,并导入了文件;但是它们被创建为不同的命名空间。

mongoimport --host <primary cluster name> --collection posts --type json --file C:/Users/H182720/Desktop/testcontent.json --jsonArray --authenticationDatabase admin --ssl –username <username> --password <password> 

任何有关如何在 'node-angular' 的 'posts' 集合中导入 JSON 文档的指导将不胜感激。

4

1 回答 1

1
 mongoimport --host <primary cluster name> --collection posts 
--type json --file C:/Users/H182720/Desktop/testcontent.json --jsonArray 
--authenticationDatabase admin --ssl –username <username> --password <password>  
--db node-angular

这会将文档导入数据库posts集合node-angular

于 2018-10-27T06:27:54.673 回答