Post 요청으로 들어오는 Body 부분 받기

Front-End

스크린샷 2023-11-19 오후 5.53.11.png

Back-End

app.post("/products", (req, res) => {
  console.log("req.body : ", req.body); // undefined
});

// POST /products
// req.body :  undefined
// POST /products 2ms

undefined가 나오는 것에 해결 방안

bodyParser모듈을 이용해서 해결해줄 수 있습니다.

하지만 express 버전 4.16.0부터는 express에 들어 있는 내장 미들웨어 함수로 bodyParser 모듈을 대체해줄 수 있습니다.

app.use(express.json());

// req.body :  { name: 'iPhone 15 Pro max', description: "It's new" }