node js 질문 콜백처리 순서
글쓴이: qkrwncks593 / 작성시간: 수, 2016/01/20 - 5:47오후
app.post('/getusername', function (req, res) {
result = {};
connection.query('SELECT username FROM USERS WHERE session=?', [req.body.session]. function(err, rows, fields) {
if(err) throw err;
result.username = rows[0].username;
res.send(result); // 첫번째 위치
}
res.send(result); // 두번째 위치
});
쿼리질의 결과를 전송해줄때 어디에 전송코드를 위치시켜놓는게 좋을까요?
Forums:
책을 봐야 알겠는데요.
- 코드는 모르지만.
쿼리를 얻고 전송하고. 리턴하기
쿼리를 얻지 않고. 전송하기
실패시에 res.send()를 해야 하는지 여부를 메시지로 출력해봐야 할거 같습니다.
- 책 보고 따라하는것이 좋을거 같습니다.
- return res.send(result); 이런식으로 대부분 코드를 작성했네요.
------------------------------------
app.post res.send
https://search.naver.com/search.naver?sm=stb_hty&where=se&ie=utf8&query=app.post+res.send
res.send(status, body) is depricated in express, changing to send.status... #1
https://github.com/JonAbrams/synth-api/pull/1
http://pastebin.com/MvqqbKyQ
Deprecate res.send(status, body) format #2227
https://github.com/strongloop/express/issues/2227
res.send(status, body) is depricated in express, changing to send.sta…
https://github.com/mikaelhm/synth-api/commit/c12f2af9385be108ff7414a87901b37a1a749118
[JavaScript] Node와 Angular를 이용하여 간단한 TODO App 예제 샘플 만들어보기 Develop Tip
http://mcchae.egloos.com/11103678
----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.
매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.
각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com
댓글 달기