TypeError: Cannot destructure property 'title' of 'req.body' as it is undefined.
console.log(req.body);
해도 콘솔창에 클라이언트의 요청 본문이 출력되지 않는다. req.body
가 undefined
일 때 발생한다.
req.body
가 제대로 파싱되지 않아 발생하는 문제.
req.body를 사용하려면, Express 서버에서 요청 본문을 파싱할 수 있도록 express.json() 미들웨어를 사용해야 한다. 만약 req.body가 파싱되지 않으면 undefined가 된다.
//app.js
import express from 'express';
app.use(express.json()); // JSON 본문 파싱을 위한 미들웨어 추가