반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리액트
- Express middleware
- 맥북 사용법
- jsx 문법
- 맥북 초보
- Java tech interview
- Node.js Express
- 맥북 팁
- 백준 단계별로 풀어보기
- node.js
- react jsx
- 자바 면접
- 알고리즘
- tech interview
- 백준 알고리즘
- 생활코딩
- React props
- 아톰에디터
- 맥북 필수 앱
- 자바 인터뷰
- react state
- mysql
- 맥북 유용한 앱
- React
- 백준
- 기술면접
- 자바 기술면접
- 자바 영어면접
- AtomEditor
- 자바 개발자
Archives
- Today
- Total
목록node.js 글수정 (1)
song.log
[Node.js] 글생성, 글수정, 글삭제 : post방식으로 전송된 데이터 받기, Redirection, 객체를 이용해서 템플릿 기능 정리 정돈하기
1. 글생성: UI 만들기, Post방식으로 전송된 데이터 받기 기존 pathname '/' 이외에 pathname '/create'을 생성해 글을 작성할 수 있는 페이지를 작성 아래의 코드를 추가 기존의 template에다가 html form을 추가 else if(pathname === "/create"){ fs.readdir('./data', function(error, filelist){ var title = 'WEB - create'; var list = templateList(filelist); var template = templateHTML(title, list, ` `); response.writeHead(200); response.end(template); }); } form의 post ..
DevLog/Node.js
2019. 12. 21. 20:01