본문 바로가기

NODE.JS

[express]req.body 가 undefined 이라고 뜰 때

이유 : body-parser 가 깔려있지 않아서 

 

해결법

 

1. body-parser 설치

2. 

app.use(express.json());

app.use(express.urlencoded( {extended : false } ));

추가