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

Comment définir correctement un objet dans un tableau dans le schéma Mongoose avec un index géographique 2d

Vous pouvez déclarer trk de la manière suivante :-soit

trk : [{
    lat : String,
    lng : String
     }]

ou

trk : { type : Array , "default" : [] }

Dans le second cas, lors de l'insertion, créez l'objet et poussez-le dans le tableau comme

db.update({'Searching criteria goes here'},
{
 $push : {
    trk :  {
             "lat": 50.3293714,
             "lng": 6.9389939
           } //inserted data is the object to be inserted 
  }
});

ou vous pouvez définir le tableau d'objets par

db.update ({'seraching criteria goes here ' },
{
 $set : {
          trk : [ {
                     "lat": 50.3293714,
                     "lng": 6.9389939
                  },
                  {
                     "lat": 50.3293284,
                     "lng": 6.9389634
                  }
               ]//'inserted Array containing the list of object'
      }
});