Попытка проверить, может ли быть обновлен параметр запроса API . ['age"]
Итак, я проверяю массив значений .
Значение продолжает возвращаться false
У меня console.log ()
- params
- массив свойств
- Результат проверки параметров по массиву свойств
router.patch('/users/:id', async (req, res) => {
const updates = Object.keys(req.body);
const properties = ['name', 'age', 'email', 'password'];
console.log(updates)
console.log(properties)
const validateUpdate = updates.every((item) => {
properties.includes(item);
});
console.log(validateUpdate);
try {
if (!validateUpdate) {
console.log(`Property not eligible for update: ${validateUpdate}`);
return res.status(400).send('Property not eligible for update');
}
const updateUser = await User.findByIdAndUpdate(req.params.id, req.body, {
useFindAndModify: false,
new: true,
runValidators: true
});
res.status(200).send("update" + updateUser);
} catch (error) {
res.status(400).send(error)
}
});