假设我们有代码:
await Employees.updateMany(
{
InsertDate: {
$gte: _yesterday, // date ojbect that is passed as a param
$lte: _today // date ojbect that is passed as a param
}
},
{ $set: { RegistrationDate: ... // some var that I generate } }
);
如何获得受影响文档的数量(计数)?
2条答案
按热度按时间9vw9lbht1#
如文档中所述,您可以在响应的
nModified
字段中获得更新文档的数量。所以你可以这样访问它:
utugiqy62#
如果您使用的是MongoDB版本〉= 5.0,则使用
modifiedCount
代替nModified
例如