작성
·
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으로 처리해도 똑같이 돌아가는데 둘의 차이점이 있나요?