码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2019-01-14 10:57:19      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:code   exp   条件   指定   func   rem   mongod   function   move   

使用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);
        
    }
});

 

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

标签:code   exp   条件   指定   func   rem   mongod   function   move   

原文地址:https://www.cnblogs.com/luguankun/p/10265019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!