sql >> Database >  >> NoSQL >> MongoDB

mongodb update push-array

Iemand die het element in een array probeert te duwen, is nu mogelijk, met behulp van de native mongodb-bibliotheek.

Gezien het volgende mongodb-verzamelobject

{ 
"_id" : 5,
"attachments": [
    { 
        "id": "xxxxxxx",
        "subtype": "book",
        "title": "xxxx",
        "body": "xxxx" ,
        "filetype" : "xxxxx"
    },
    {
        "id": "xxxxxxx",
        "subtype": "book",
        "title": "xxxx",
        "body": "xxxx",
        "filetype": "xxxxx"
    }
]
}


 arr = [{
 'id':'123456',
 'subtype':'book',
 'title'  : 'c programing',
 'body'  :' complete tutorial for c',
 'filetype' : '.pdf'
 },
{
 'id':'123457',
 'subtype':'book',
 'title'  : 'Java programing',
 'body'  :' complete tutorial for Java',
 'filetype' : '.pdf'
 }
];

De volgende query kan worden gebruikt om het array-element aan het einde naar "attachments" te pushen. Hiervoor kunnen $push of $addToSet worden gebruikt.

Dit is het invoegen van één object of element in bijlagen

db.collection('books').updateOne(
  { "_id": refid }, // query matching , refId should be "ObjectId" type
  { $push: { "attachments": arr[0] } } //single object will be pushed to attachemnts
 ).done(function (err, updElem) {
  console.log("updElem" + JSON.stringify(updElem));     
});

Dit zal elk object in de array in bijlagen invoegen

   db.collection('books').updateOne(
     { "_id": refid }, // query matching , refId should be "ObjectId" type
     { $push: { "attachments":{$each: arr} } } // arr will be array of objects
     ).done(function (err, updElem) {
           console.log("updElem" + JSON.stringify(updElem));     
    });


  1. Tijdscomplexiteit van $addToset versus $push wanneer element niet in de array bestaat

  2. Hoe MongoDB te schalen?

  3. Mongo Connection Pooling (De grootte van de verbindingspool wijzigen)

  4. 9 ClusterControl-functies die u niet zult vinden in andere hulpprogramma's voor databasebeheer