我有这样的json_file.json:[{},{},…]
当我运行以下命令将其导入mongodb时:
mongoimport --db my_db --collection my_collection --file json_file.json
收到以下错误:
Failed: error unmarshaling bytes on document #0: JSON decoder out of sync - data changing underfoot?
解决:将--jsonArray标志添加到我导入的命令中
mongoimport --db my_db --collection my_collection --jsonArray --file json_file.json