//删除数据
// ******************
User.remove({
username:"zs"
},function(err,ret){
if(err){
console.log("删除失败")
}else{
console.log("删除成功")
}
})
//更新数据
// ******************
User.findByIdAndUpdate('5f55d8e63d601c3070b46ce0',{
password:"666",
},function(err,ret){
if(err){
console.log("更新失败")
}else{
console.log("更新成功")
}
})
node 删除 与更新
最新推荐文章于 2024-08-25 08:15:00 发布