반응형
정적 경로(Static Path)
- 정확한 문자열과 일치하는 경로
app.get('/home', (req, res) => { res.send('홈 페이지입니다.'); });
동적 경로(Dynamic Path)
- 변수와 함께 사용되는 경로
app.get('/user/:userId',(req, res)=>{ const userId = req.params.userId; res.send(`유저아이디는: ${userId} 입니다`) })
정규식 경로
정 규 표현식을 사용하여 복잡한 패턴의 요청을 받습니다.
app.get(/.*fly$/, (req, res) => {
res.send('Matched a route ending with "fly"');
});
참고자료
https://www.geeksforgeeks.org/express-js/?ref=dhm
반응형