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
2023-07-28 23:28:04
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