1.从测试环境数据库导出数据

2.导入数据到本地数据库

mongoimport --host localhost --port 27017 --username root --password 123456 --collection test --db runoob --file D:\DownLoad\test.json --authenticationDatabase admin

--host localhost:要导入数据库的ip

--port 27017:要导入数据库的端口号

--username root:数据库用户名

--password 123456:数据库用户密码

--collection test:要导入的表名

--db runoob:要导入的表所在数据库名

--file D:\DownLoad\test.json:要导入的文件路径

--authenticationDatabase admin:管理员认证