728x90
반응형

post로 아이디, 비밀번호의 데이터 값을 반환했을때, undefined가 반환된다.

 

이럴때 사용하는 패키지가 body-parser

"클라이언트 POST request data의 body로부터 파라미터를 편리하게 추출합니다."

 

설치를 한 후,

app.use(bodyParser.json()); //json형태로 변경
app.use(bodyParser.urlencoded({ extended: true })); //한글,공백등 잘못나오는걸 방지

 

설치하고 미들웨어 등록하니

결과값이 잘 출력되었다.

728x90
반응형

+ Recent posts