我有这样的json_file.json:
[
{
"project": "project_1",
"coord1": 2,
"coord2": 10,
"status": "yes",
"priority": 7
},
{
"project": "project_2",
"coord1": 2,
"coord2": 10,
"status": "yes",
"priority": 7
},
{
"project": "project_3",
"coord1": 2,
"coord2": 10,
"status": "yes",
"priority": 7
}
]
当我运行以下命令将此导入到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标志,则如下所示:
imported 3 documents
而不是原始文件中所示的json格式的一个文档。
如何使用上面显示的文件中的原始格式将json导入到mongodb中?