使用express框架和mongoose在MongoDB删除数据

Posted on 2019-01-14 06:18  猫头唔食鱼  阅读(574)  评论(0编辑  收藏  举报

使用remove()删除数据

remove({},function(err,doc){})  // 删除所有数据

remove({age:18},function(err,doc){}); //删除指定条件的数据

User.remove({},function(err,doc){
    if(err){
        console.log(err);
        
    }else{
        console.log(doc);
        
    }
});
User.remove({age:12},function(err,doc){
    if(err){
        console.log(err);
        
    }else{
        console.log(doc);
        
    }
});