删除请求有效但不会从数据库中删除
Delete request works but doesn't delete from database
当我尝试通过 FindByIdAndDelete 删除项目时,它没有删除任何内容。
当我在邮递员中发出删除请求时,我没有得到任何错误,只是该项目在数据库中。
我的 put 请求也是如此。
这是我的代码:
router.delete("/", (req, res) => {
Appointment.find({}, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
router.delete("/:id", (req, res) => {
const id = req.params.id;
Appointment.findByIdAndDelete(id, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
这就是我在请求中提出的正文:
{
"id": "5e3ef4950e1b4027201e73bf"
}
我做错了什么?
findByIdAndDelete
没有找到要删除的文档时不会抛出异常。您需要检查数据是否为空。
此外,您的第一条路线必须是 GET 路线而不是 DELETE。
router.get("/", (req, res) => {
Appointment.find({}, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
router.delete("/:id", (req, res) => {
const id = req.params.id;
Appointment.findByIdAndDelete(id, (err, data) => {
if (err) {
return res.status(500).json();
} else {
if (data) {
return res.json(data);
} else {
return res.status(400).send("Document not found, check id");
}
}
});
});
当我尝试通过 FindByIdAndDelete 删除项目时,它没有删除任何内容。 当我在邮递员中发出删除请求时,我没有得到任何错误,只是该项目在数据库中。 我的 put 请求也是如此。
这是我的代码:
router.delete("/", (req, res) => {
Appointment.find({}, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
router.delete("/:id", (req, res) => {
const id = req.params.id;
Appointment.findByIdAndDelete(id, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
这就是我在请求中提出的正文:
{
"id": "5e3ef4950e1b4027201e73bf"
}
我做错了什么?
findByIdAndDelete
没有找到要删除的文档时不会抛出异常。您需要检查数据是否为空。
此外,您的第一条路线必须是 GET 路线而不是 DELETE。
router.get("/", (req, res) => {
Appointment.find({}, (err, data) => {
if (err) {
return res.status(500).json();
} else {
return res.json(data);
}
});
});
router.delete("/:id", (req, res) => {
const id = req.params.id;
Appointment.findByIdAndDelete(id, (err, data) => {
if (err) {
return res.status(500).json();
} else {
if (data) {
return res.json(data);
} else {
return res.status(400).send("Document not found, check id");
}
}
});
});