我有以下情况-我想遍历db中的每个元素并:
如果元素的bumped
字段设置为false
创建日期少于30天
然后:
设置bumped
为true
发送邮件给用户!
User.updateMany(
{
bumped: false,
creationDate: {
$gte: new Date(Date.now() - 30 * 24 * 60 * 60 * 1000),
},
},
{
$set: {
bumped: true,
},
},
(err, res) => {
//
// What is "res" here? <====== question
},
);
我的问题-res回调函数中的参数是什么?
问题2:是否仅对满足条件的这些元素触发回调?
慕桂英3389331
相关分类