MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Mettre à jour le sous-ensemble de champs avec Mongoose

Vous pouvez créer une méthode d'assistance comme celle-ci :

const filterObj = (obj, ...allowedFields) => {
  const newObj = {};
  Object.keys(obj).forEach(el => {
    if (allowedFields.includes(el) && (typeof obj[el] === "boolean" || obj[el]))
      newObj[el] = obj[el];
  });
  return newObj;
};

Et utilisez-le comme ceci :

  let filteredBody = filterObj(req.body, "email", "firstname", "lastname");
  filteredBody.updatedAt = Date.now();

  // Update the user object in the db
  const userUpdated = await User.findByIdAndUpdate(userId, filteredBody, {
    new: true,
    runValidators: true
  });