Den løsning, jeg kan komme i tanke om, er at opdatere det indlejrede dokument én efter én.
Antag, at vi har fat i de forbudte sætninger, som er en række strenge:
var bannedPhrases = ["censorship", "evil"]; // and more ...
Derefter udfører vi en forespørgsel for at finde alle UserComments
som har comments
der indeholder nogen af de bannedPhrases
.
UserComments.find({"comments.comment": {$in: bannedPhrases }});
Ved at bruge løfter kan vi udføre opdatering asynkront sammen:
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);
});
Hvis du bruger Bluebird JS er Mongooses løftebibliotek, kunne koden forenkles:
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
});