在MongoDB中,可以使用mongoimport
命令来批量导入JSON数据。
以下是一些使用mongoimport
命令的示例:
mongoimport --db your_database --collection your_collection --file path/to/your/file.json
mongoimport --db your_database --collection your_collection --file path/to/your/file1.json,path/to/your/file2.json,path/to/your/file3.json
mongoimport --db your_database --collection your_collection --jsonArray --file path/to/your/file.json
在以上示例中,your_database
是你要导入数据的数据库名称,your_collection
是你要导入数据的集合名称,path/to/your/file.json
是你要导入的JSON文件路径。
如果你要导入的JSON文件是一个JSON数组,可以使用--jsonArray
选项告诉mongoimport
命令。
需要注意的是,mongoimport
命令需要在命令行中运行,并且在运行该命令之前,确保已经正确安装了MongoDB,并将其添加到系统的环境变量中。