在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,并將其添加到系統的環境變量中。