📅  最后修改于: 2022-03-11 14:48:24.798000             🧑  作者: Mango
Notes.create(note)
.then((data) => {
res.send(data);
})
.catch((err) => {
res.status(500).send({
message: err.message || 'Some error occurred while create the Notes',
});