app.post("/products", (req, res) => {
console.log("req.body : ", req.body); // undefined
});
// POST /products
// req.body : undefined
// POST /products 2ms
bodyParser
모듈을 이용해서 해결해줄 수 있습니다.
하지만 express 버전 4.16.0부터는 express에 들어 있는 내장 미들웨어 함수로
bodyParser
모듈을 대체해줄 수 있습니다.
app.use(express.json());
// req.body : { name: 'iPhone 15 Pro max', description: "It's new" }