일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 통계
- 주일설교
- 빅데이타
- Machine Learning
- Big Data
- 김양재
- No SQL
- 인공지능
- R
- 빅 데이타
- 몽고디비
- 김양재 목사
- openCV
- 김양재 목사님
- 딥러닝
- MongoDB
- Artificial Intelligence
- data science
- 데이터 과학
- 빅데이터
- WebGL
- Statistics
- 우리들교회
- node.js
- probability
- 확률
- nodeJS
- Deep learning
- c++
- 빅 데이터
- Today
- Total
Scientific Computing & Data Science
[Web App/Node.js Express] Error Handling 본문
[Basic Error Handling]
// catch 404 and forward to error handler app.use(function(req, res, next) { var err = new Error('Not Found'); err.status = 404; next(err); });
[For Error Status - 404]
app.use(function(req, res){ res.send(404, "404 - Not Found"); }); app.use(function(err, req, res, next){ res.status(err.status || 404); res.end(err.message); });
[For Error Status - 404 - Result]
[Username - Code]
var app = express(); app.get('/users/:username', function(req, res, next){ res.send(req.params.username + "'s profile"); }); app.param('username', function(req, res, next, username){ if(username != 'gchoi') { req.user = username; next(); } else { next(new Error("No User Found")); } });
[Username - Results]
'Programming > Web App' 카테고리의 다른 글
[Web App/Node.js Express] Routing을 통해 주소창의 값 읽어오기 (0) | 2015.04.09 |
---|---|
[Web App/Node.js Express4] Express4에서의 라우팅(Routing) 방법 (1) | 2014.09.13 |
[Web App/Node.js Express] Session (0) | 2014.09.09 |
[Web App/Node.js Express] Express4에서 변경된 express-session (0) | 2014.09.09 |
[Web App/Node.js Express] cookieParser를 이용한 쿠키 삭제 (1) | 2014.09.08 |