(16) express 모듈 사용-⑦ 쿼리스트링 응용
app.js 에 추가한 후 url: 127.0.0.1:3000/topic으로 접근해보자.
============================================================
app.js
++ 붙여넣기
app.get('/topic',function(req, res){
var topics =[
'javascript is the client language'
,'nodejs is the server side javascript'
,'express is a module of extra modules'
];
var output = `
<a href = "/topic?id=0">Java Script</a><br/>
<a href = "/topic?id=1">Node js</a><br/>
<a href = "/topic?id=2">Express</a><br/>
${topics[req.query.id]}
`;
res.send(output);
});
========================================================
127.0.0.1:3000/topic 으로 접근
Java Script 클릭
Node js 클릭
Express 클릭
출처: https://sourceflower.tistory.com/16?category=561762 [소스플로우]
'JavaScript BackEnd > Node.js, Express' 카테고리의 다른 글
(20) 데이터 전송 (POST 방식) (0) | 2019.04.03 |
---|---|
(19) 데이터 전송 (GET 방식) (0) | 2019.04.03 |
(18) GET vs POST (0) | 2019.04.03 |
(17) semantic url (의미론적 url) vs 쿼리스트링 방식 (0) | 2019.04.03 |
(15) express 모듈 사용-⑥ 쿼리스트링 (0) | 2019.04.03 |
(14) express 모듈 사용-⑤ 템플릿 엔진: jade의 문법 (0) | 2019.04.03 |
(13) express 모듈 사용-④ Intro. 템플릿 엔진 (0) | 2019.04.03 |
(12) express 모듈 사용-③ 정적 웹페이지 vs 동적 웹페이지 (0) | 2019.04.03 |