작성자 없음
작성자 정보가 삭제된 글입니다.
작성
·
151
0
middleware.js
exports.postExist = async(req,res,next)=>{
const post = await db.Post.findOne({ where: { id: req.params.id } });
if (!post) {
return res.status(404).send("해당 페이지가 존재하지 않습니다");
}
next();
}
post.js
router.delete('/:id', isLoggedIn, postExist, async(req,res,next)=>{
try{
await db.Post.destroy({ where: {id: req.params.id}});
res.send(req.params.id);
}catch(e){
console.error(e);
next(e);
}
})
next()만 추가해서 다음 동작으로 갈수있게 해주었는데 더 추가할게 있는지 궁금합니다..!