ejs 파일간 링크 누르면 왔다갔다 하는거 어떻게 구현할까요?
본문
<a href = /abc/hello> 누르면
hello.ejs 파일로 이동한다고 할떄
router.get('/hello', function(req, res) {
res.render('abc/hello');
});
이렇게 하면 될줄 알았는데 안되니까 당황스럽네요
답변을 작성하시기 전에 로그인 해주세요.
<a href = /abc/hello> 누르면
hello.ejs 파일로 이동한다고 할떄
router.get('/hello', function(req, res) {
res.render('abc/hello');
});
이렇게 하면 될줄 알았는데 안되니까 당황스럽네요