MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment ajouter de nouveaux objets dans un tableau imbriqué pour mongodb en utilisant node.js ?

Le update() la fonction est

 update(selector, document[, options][, callback])

Le premier paramètre est selector , veuillez essayer celui-ci

    var student_name = req.body.name;
    var student_id = req.body.ID;
    collection.update( 
             { location:"Halifax", 
               'students.ID': student_id, 
               'students.name': student_name},
             {$push: { "students.$.images": 
                                {
                                    "image_url":"www.example.com",
                                    "image_id":"uqxhqbxqx_1219"
                                }
                     }
     }, function(err,result){