Я знаю, что что-то упустил, но просто не могу понять, надеюсь, вы могли бы помочь. Вот мой код:
const express = require("express");
const Appointment = require("../models/Appointment");
const router = express.Router();
router.get("/", (req, res) => {
Appointment.find({}, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
router.put("/:id", (req, res) => {
const id = req.params.id;
const appointment = new Appointment(req.body);
Appointment.findByIdAndUpdate(id, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
module.exports = router;
После этого я получаю ошибку в почтальоне could not get any response
. Мое приложение работает, поэтому проблема не в этом.