일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 김양재 목사님
- 빅 데이타
- WebGL
- c++
- 주일설교
- 빅데이터
- 인공지능
- 빅데이타
- Big Data
- 김양재
- 우리들교회
- No SQL
- Deep learning
- 딥러닝
- 확률
- Artificial Intelligence
- nodeJS
- Statistics
- openCV
- R
- MongoDB
- Machine Learning
- 김양재 목사
- probability
- 몽고디비
- 데이터 과학
- node.js
- 빅 데이터
- data science
- 통계
Archives
- Today
- Total
Scientific Computing & Data Science
[Web App/Node.js Express] Routing을 통해 주소창의 값 읽어오기 본문
[index.js]
var express = require('express');
var router = express.Router();
/* GET home page. */
/*router.get('/', function(req, res, next) {
res.render('index',
{
title: 'GCHOI',
age: 40
});
});*/
router.get('/users/:id', function(req, res, next){
console.log(req.params);
res.send(req.params.id, 200);
});
module.exports = router;
[Web Browser]
[Console]
'Programming > Web App' 카테고리의 다른 글
[Web App/Node.js Express] 웹 브라우저 주소창의 쿼리를 이용한 도큐먼트 검색 (0) | 2015.04.21 |
---|---|
[Web App/Node.js Express] 웹 브라우저 주소창의 쿼리를 이용한 도큐먼트 저장 (0) | 2015.04.19 |
[Web App/Node.js Express4] Express4에서의 라우팅(Routing) 방법 (1) | 2014.09.13 |
[Web App/Node.js Express] Error Handling (0) | 2014.09.09 |
[Web App/Node.js Express] Session (0) | 2014.09.09 |
Comments