목록시멘틱url (1)
내맘대로 살기🎉
[Node.js] express 쿼리스트링(query string), 시멘틱 URL
ex ) localhost/router?id=1 localhost/router?id=2 localhost/router?id=3 ? 뒤에 나타는 것{id=(1~3)}을 query string이라고 한다. 응답, 요청 (req), (res) res.send(req.query.id); 이렇게 하고 router?id=1이라고 url을 작성하면 html에 1이 출력. * expressjs.com에 접속하여 API reference를 보는 것도 좋다. localhost/topic?id=1&name=harris id와 name 둘 다 가져온다. 중간에 연결자는 &이다. app.get('/topic/:id',function(req, res){ var topics = [ 'Javascript is...', 'Nodejs..
개발자의 길/Node.js
2017. 4. 27. 00:20