使用mongoimport将json从文件导入mongodb

我有这样的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 
上一篇:effective-python-14


下一篇:给大家安利一个万能工具utools