송효섭

Backend : map 라우터 수정

...@@ -13,10 +13,8 @@ app.set('views', path.join(__dirname, 'views')); ...@@ -13,10 +13,8 @@ app.set('views', path.join(__dirname, 'views'));
13 app.set('view engine', 'ejs'); 13 app.set('view engine', 'ejs');
14 app.engine('html', require('ejs').renderFile); 14 app.engine('html', require('ejs').renderFile);
15 15
16 -//각각의 요청에서 router 호출해서 page를 전환함. 16 +//각각의 요청에서 index.js에 등록된 router 호출해서 page를 전환함.
17 app.use('/', mainRouter); 17 app.use('/', mainRouter);
18 -app.use('/login', mainRouter);
19 -
20 18
21 //css, image 등 정적 파일을 public에서 불러옴 -> html과 연결함 19 //css, image 등 정적 파일을 public에서 불러옴 -> html과 연결함
22 app.use(express.static(path.join(__dirname, 'public'))); 20 app.use(express.static(path.join(__dirname, 'public')));
......
...@@ -13,13 +13,20 @@ router.get('/login', function (req, res, next) { ...@@ -13,13 +13,20 @@ router.get('/login', function (req, res, next) {
13 console.log('로그인 페이지 접속 성공'); 13 console.log('로그인 페이지 접속 성공');
14 }); 14 });
15 15
16 -// router.get('/login/:id', function (req, res) { 16 +/* GET home page. */
17 -// var id = req.params.id; 17 +router.get('/maptest', function (req, res, next) {
18 -// console.log('id 할당 접속 성공'); 18 + res.render('maptest.html', { title: '카카오맵 호출' });
19 -// }); 19 + console.log('카카오맵 페이지 접속 성공');
20 +});
20 21
21 router.get('/send', function (req, res, next) { 22 router.get('/send', function (req, res, next) {
22 res.render('send.html', { title: 'Send message' }); 23 res.render('send.html', { title: 'Send message' });
23 console.log('카카오톡 공유 메시지 접속 성공'); 24 console.log('카카오톡 공유 메시지 접속 성공');
24 }) 25 })
26 +// router.get('/login/:id', function (req, res) {
27 +// var id = req.params.id;
28 +// console.log('id 할당 접속 성공');
29 +// });
30 +
31 +
25 module.exports = router; 32 module.exports = router;
...\ No newline at end of file ...\ No newline at end of file
......