猫鼬更新找到数组

时间:2020-10-04 15:36:27

标签: mongodb mongoose mongodb-query

我想更新返回到find函数的所有元素。为此,我正在尝试这种方法,但是无法正常工作

 Notification.find({ user: user.id })
.then((nots) => {
  if (nots) {
    Notification.updateMany({}, nots, { $set: { active: false } }).then(() => {
    });
  }
});

我想使所有找到的通知有效值等于false。我该怎么办?

感谢您的帮助

0 个答案:

没有答案