티스토리 뷰
단일 함수에서
var todo = function (req, res){};
app.get("/", todo);
app.get("/blabla", todo);
app.get("/blablablabla", todo);
멀티플 라우팅은 다음과 같이...
app.get(
['/test', '/alternative', '/barcus*', '/farcus/:farcus/', '/hoop(|la|lapoo|lul)/poo'],
function ( request, response ) {
}
);
'■ 백엔드 ■ > NodeJS' 카테고리의 다른 글
기존 cookie clear의 한계, 그냥 cookie overwrite로 해결 (0) | 2020.09.04 |
---|---|
A cookie associated ... `SameSite` attribute ( Node.js example for SameSite=None; Secure ) (0) | 2020.08.24 |
nodemon (0) | 2020.07.09 |
NodeJS - Port 3000 is already in use... (0) | 2020.07.07 |
Express Middleware (0) | 2020.06.26 |
댓글