我運行了一個mongo導入命令來導入我的json文件,但所有數據都保存在單個對象下。Mongo導入將所有數據保存在單個對象下
mongoimport -d DB NAME -c COLLECTION NAME --type json --file FILE PATH --host MY MONGO LAB HOST --port 27892 -u MYUSER -p MYPASSWORD
但現在當我看到mongorobot分貝
JSON
{
"-Kbr7KouYOL_a9NIAyPV" : {
"correctas" : [ 1 ],
"creator_name" : "kk",
"game_name" : "Elrubius",
"jugado" : 62,
"opciones1" : [ "Por usar una pistola falsa" ],
"opciones2" : [ "Por matar" ],
"opciones3" : [ "Por robar" ],
"opciones4" : [ "Por estar tomando alcol" ],
"preguntas" : [ "Elrubius porque fue detenido" ],
"premium" : false
},
"-Kbr8RJMSCv95m6TS4Of" : {
"correctas" : [ 2 ],
"creator_name" : "CRIATURITA",
"game_name" : "ELRUBIOSOMG",
"jugado" : 34,
"opciones1" : [ "Carlos" ],
"opciones2" : [ "Ruben" ],
"opciones3" : [ "Jorge" ],
"opciones4" : [ "Chavez" ],
"preguntas" : [ "Como se llama elrubiusomg?" ],
"premium" : false
},
- 是錯誤的所有數據存儲在單個對象下?
- 我該如何避免這種情況?
感謝
你是指我正在導入的json文件嗎?我已經添加了它(; –