我在归档中有很多json
文件,我需要在每次操作中将它们导入到mongo中(我认为它可能在循环中).你有什么想法吗?
如果你在
Linux / Unix shell中,你可以试试
for filename in *; do mongoimport -d mydb -c $filename; done
如果你在Windows上:
FOR %i IN (C:\mongodbData\*.json) DO mongoimport --db dbName --collection colection --type json --file %i
原文链接:https://www.f2er.com/js/158662.html