인프런 커뮤니티 질문&답변

이규열님의 프로필 이미지
이규열

작성한 질문수

[리뉴얼] Node.js 교과서 - 기본부터 프로젝트 실습까지

next 활용법

미들웨어 get으로 처리하는 방법

작성

·

144

0

app.use((req, res, next) => {
    console.log('1 요청에 실행');
    next();
}).use((req, res, next) => {
    console.log('2 요청에 실행');
    next();
}).use((req, res, next) => {
    console.log('3 요청에 실행');
    next();
})
app.get('*/', (req, res, next) => {
    console.log('1 요청에 실행');
    next();
}).get('*/', (req, res, next) => {
    console.log('2 요청에 실행');
    next();
}).get('*/', (req, res, next) => {
    console.log('3 요청에 실행');
    next();
})

위에 처럼 use로 되어있는 미들웨어를 get으로 처리해도 똑같이 돌아가는데 둘의 차이점이 있나요?

답변 1

0

제로초(조현영)님의 프로필 이미지
제로초(조현영)
지식공유자

use로 할 경우 get이 아닌 post put patch 등 모든 라우터에 해당됩니다.

이규열님의 프로필 이미지
이규열

작성한 질문수

질문하기