MongoDB не получает запрос на удаление

#node.js #reactjs #mongodb Вопрос: клиент: const handleDelete = (id) => { console.log(id); axios.delete(`http://localhost:3001/delete`, {id}) .then(res => console.log(err)}) .catch(err => console.log(err)) } КОНСОЛЬ правильно РЕГИСТРИРУЕТ ИДЕНТИФИКАТОР: vv17OZpdGkMwNEv0 сервер: cartRoutes.route("/delete").delete((req, res) =>…

Продолжить чтениеMongoDB не получает запрос на удаление