MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Aktualizujesz wiele poddokumentów za pośrednictwem Mongoose?

Rozwiązaniem, które przychodzi mi do głowy, jest aktualizowanie zagnieżdżonego dokumentu jeden po drugim.

Załóżmy, że mamy zakazane frazy, które są tablicą ciągów:

var bannedPhrases = ["censorship", "evil"]; // and more ...

Następnie wykonujemy zapytanie, aby znaleźć wszystkie UserComments który ma comments które zawierają dowolne z bannedPhrases .

UserComments.find({"comments.comment": {$in: bannedPhrases }});

Korzystając z obietnic, możemy wspólnie wykonać aktualizację asynchronicznie:

UserComments.find({"comments.comment": {$in: bannedPhrases }}, {"comments.comment": 1})
  .then(function(results){
    return results.map(function(userComment){

       userComment.comments.forEach(function(commentContainer){
         // Check if this comment contains banned phrases
         if(bannedPhrases.indexOf(commentContainer.comment) >= 0) {
           commentContainer.isHidden = true;
         }
       });

       return userComment.save();
    });
  }).then(function(promises){
     // This step may vary depending on which promise library you are using
     return Promise.all(promises); 
  });

Jeśli używasz Bluebird JS jest biblioteką obietnic Mongoose, kod można uprościć:

UserComments.find({"comments.comment": {$in: bannedPhrases}}, {"comments.comment": 1})
    .exec()
    .map(function (userComment) {

        userComment.comments.forEach(function (commentContainer) {
            // Check if this comment contains banned phrases
            if (bannedPhrases.indexOf(commentContainer.comment) >= 0) {
                commentContainer.isHidden = true;
            }
        });

        return userComment.save();
    }).then(function () {
    // Done saving
});


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Jak podłączyć kontener docker nodeJS do mongoDB?

  2. jak zaindeksować nazwę użytkownika w mongo z niewrażliwością na wielkość liter?

  3. Mongo jak $szukać za pomocą DBRef

  4. Meteor/MongoDB widzi dostępne pola do publikacji?

  5. MongoError:Nie można wyodrębnić kluczy geograficznych z obiektu za pomocą Type :Point