MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDb:come inserire un oggetto aggiuntivo nella raccolta di oggetti?

Come già accennato, la struttura che desideri non è valida. Consiglio la seguente struttura per il tuo documento proprietario:

    {
    "_id" : ObjectId("51c9cf2b206dfb73d666ae07"),
    "firstName" : "john",
    "lastName" : "smith",
    "ownerEmail" : "[email protected]",
    "camps" : [
            {
                    "name" : "cubs-killeen",
                    "location" : "killeen"
            },
            {
                    "name" : "cubs-temple",
                    "location" : "temple"
            }
    ],
    "instructors" : [
            {
                    "firstName" : "joe",
                    "lastName" : "black"
            },
            {
                    "firstName" : "will",
                    "lastName" : "smith"
            }
    ]
}

e poi

db.stack.update(
  { ownerEmail: "[email protected]" },
  {
    $push: {
      camps: { name: "cubs-killeen", location: "some other Place" }
    }
  }
);

Avendo questo, puoi aggiungere campi come questo:

Spero che aiuti.