Проблема: когда я использую Postman
, я пытался POST
данных, но они по-прежнему возвращают 200
, даже если значение уже было на сервере.
Это мойкод
// Create and Save a new Note
exports.create = (req, res) => {
// Validate request
if(!req.body.content) {
return res.status(400).send({
message: "Note content can not be empty"
});
}
if (req.body.content.length < 5) {
return res.status(422).send({
message: "Note cannot be less than 5 characters"
});
}
if (req.body.title.length < 5) {
return res.status(422).send({
message: "Title cannot be less than 5 characters"
})
}
// Create a Note
const note = new Note({
title: req.body.title || "Untitled Note",
content: req.body.content
});
// Save Note in the database
note.save()
.then(data => {
res.send(data);
}).catch(err => {
res.status(500).send({
message: err.message || "Some error occurred while creating the Note."
});
});
};
Ожидаемый вывод: я должен получить сообщение об ошибке на почтальоне, что значение уже было опубликовано.Следовательно, вы не можете создать другую запись, если это значение уже добавлено.