프론트엔드 코드만 긁어다가 백엔드 코드를 완성해보았는데요,
프론트엔드 코드를 보면 나오기는 하지만 백엔드로의 요청 및 응답의 본문의 형식을 명시해놓으면 백엔드를 작성하기 한결 수월할 것 같아 이렇게 작성하게 되었습니다.
GET /users
- Response: JSON [ { id, name, age, married } ]
POST /users
- Request: JSON { name, age, married }
- Response: 아무거나
GET /users/:id/comments
- Response: JSON [ { id, User: { name }, comment } ]
POST /comments
- Request: JSON { id, comment }
- Response: 아무거나
PATCH /comments/:id
- Request: JSON { comment }
- Response: 아무거나
DELETE /comments/:id
- Response: 아무거나