- 프로젝트 소개
- 와이어 프레임
- 개발해야 하는 기능들
- public github repo 주소
1. 프로젝트 소개
Diary (가제)
"어린이의 비밀스런 일기장"
2. 와이어 프레임






와이어프레임 가이드
- 로그인
Method : GET / POST
URL : /api/login
request : { id: 'id', pw : 'pw', token : 'mytoken'}
response : 로그인성공>글목록 / 로그인실패 > MSG출력
- 회원가입
Method : GET / POST
URL : /api/membership
request : {'id': id, 'pw' : pw, id_check : 'id_check', ps_check : 'ps_check'}
response : 가입완료메세지
- 글 목록
Method : GET
URL : /api/posts
request : { id = "id", num = "num" , isSecret = true, like = 1, comment = "", date = "", img = ''", state = "", title=""}
response : 글리스트
- 글 작성
Method : POST
URL : /api/posts
request : { id = "id", num = "num" , isSecret = true, like = 1, comment = "", date = "", img = ''", state = "", title=""}
response : 글쓰기완료메세지
- 비밀일기
Method : GET
URL : /api/posts
request : { id = "id", num = "num" , isSecret = true, like = 1, comment = "", date = "", img = ''", state = "", title=""}
response : 글리스트
- 내일기장
Method : GET
URL : /api/posts
request : { id = "id", num = "num" , isSecret = true, like = 1, comment = "", date = "", img = ''", state = "", title=""}
response : 글리스트
- 댓글
Method : POST
URL : /api/ment
request : {num="id_13022933", ment=""}
response : 댓글 완료 메세지
- 댓글
Method : POST
URL : /api/post
request : {num="id_13022933", like=""}
response : 좋아요++