meteor 如果特定字段是特定值,则删除记录

示例

db.posts.find().forEach(function(doc){
    if(doc.foo === 'bar'){
        db.posts.remove({_id: doc._id});
    }
});