mongoose之findOneAndUpdate方法之代码示例

categoryModel.findOneAndUpdate({name:{$in:req.body.categorys}},{$inc:{total:1}},function(err){
if (err) return console.log(err);
res.json({status:'ok',msg:'发布成功'})
})

//在category集合里查找name在

req.body.categorys

这个数组里的文档,将查找到的所有文档的total字段都自增1

上一篇:在eclipse中查看sources源码和JavaDoc帮助文档


下一篇:在Ext JS 5应用程序中如何使用路由