Jag antar att du har följande dokument i din samling:
{ "_id" : ObjectId("55b725fd7279ca22edb618bb"), "id" : 1 }
{ "_id" : ObjectId("55b725fd7279ca22edb618bc"), "id" : 2 }
{ "_id" : ObjectId("55b725fd7279ca22edb618bd"), "id" : 3 }
{ "_id" : ObjectId("55b725fd7279ca22edb618be"), "id" : 4 }
{ "_id" : ObjectId("55b725fd7279ca22edb618bf"), "id" : 5 }
{ "_id" : ObjectId("55b725fd7279ca22edb618c0"), "id" : 6 }
och följande lista med id
var listId = [ 1, 3, 7, 9, 8, 35 ];
Vi kan använda .filter
metod för att returnera arrayen av ids
som inte finns i din samling.
var result = listId.filter(function(el){
return db.collection.distinct('id').indexOf(el) == -1; });
Detta ger
[ 7, 9, 8, 35 ]
Nu kan du även använda aggregationsramverken och $setDifference
operatör.
db.collection.aggregate([
{ "$group": { "_id": null, "ids": { "$addToSet": "$id" }}},
{ "$project" : { "missingIds": { "$setDifference": [ listId, "$ids" ]}, "_id": 0 }}
])
Detta ger:
{ "missingIds" : [ 7, 9, 8, 35 ] }