swsnu / swppfall2020

28 stars 17 forks source link

[HW4] .gitignore 및 PUT/POST에서의 response 질문입니다 #193

Open jiyewise opened 4 years ago

jiyewise commented 4 years ago

안녕하세요, HW4 과제를 하던 중 의문점이 있어 질문드립니다.

  1. .gitignore에 migration 폴더도 넣어주어야 하나요?

  2. article와 comment의 POST/PUT의 경우 "updated article/comment (with its id) should be included in response's content as JSON format" 라고 나와 있는데, 그러면 PUT/POST request의 response에서 article의 경우 {"id": 1, "title": "title", "content":"content", "author_id":1} 그리고 comment의 경우 {"id": 1, "article_id": 1, "content":"content", "author_id":1} 이런 식의 JSON format으로 response가 와야 한다는 의미인가요?

감사합니다.

cheezafizz commented 4 years ago
  1. 175 의 조교님 답변을 참고하면 아마 author_id가 아니라 author로 key가 있어야 할 것 같습니다.

jaewooklee93 commented 4 years ago
  1. 153 .gitignore 관련해서는 작성하지 않아도 된다고 하셨습니다

  2. 182 의 3.을 보면 정확한 JSON 예시가 나와 있어서 참고하시면 될것 같아요

jiyewise commented 4 years ago

감사합니다!