GitHub API 활용 (2)
ajax 방식에서 페이지 갱신 방식으로 변경
routes/github.js 수정
- 데이터를 직접 리턴하던 형태에서, 뷰와 데이터를 같이 리턴하도록
... - res.send(data); + res.render('github', {data: data, q: req.query.q}); ...
views/github.jade 수정
- jade를 거의 처음 사용하지만 레퍼런스 참고하니 크게 어려울 것은 없었다.
- 뷰 코드 작성 시 태그를 열고 닫는 등의 단순 반복 타이핑이 확 줄었다.
현재까지의 코드 :
https://github.com/hangaebal/dictionary-node-express/tree/github-api2
'개발' 카테고리의 다른 글
[Algorithm] Codility Lesson 6 Sorting - MaxProductOfThree (0) | 2016.06.27 |
---|---|
[GitHub] GitHub Page 도메인 연결하기 (0) | 2016.06.23 |
[Algorithm] Codility Lesson 6 Sorting - Distinct (0) | 2016.06.20 |
[Node.js] Github API 활용 (1) (0) | 2016.06.16 |
[Node.js] Express.js 활용 사전 앱 만들기 (3) (0) | 2016.06.15 |