swsnu / swppfall2020

28 stars 17 forks source link

[HW4] post response content 질문 #180

Open HyesunKwak opened 4 years ago

HyesunKwak commented 4 years ago

안녕하세요, article이나 comment를 post할 때 response 관련하여 질문드립니다.

article post에서 response content의 key가 'id', 'title', 'content', 'author'이고, 'author'에는 author id가 반환되면 되나요? comment도 마찬가지로 'article'와 'author'가 각각 id로 들어가면 되는지 궁금합니다.

jaewooklee93 commented 4 years ago

저도 같은 내용이 궁금합니다. POST와 PUT의 request JSON 형식은 명확하게 표현이 되어있는데 response의 JSON 형식은 다소 명확하지 못한 것 같습니다. GET /api/article의 response에는 id가 없지만 PUTPOST /get/articleid를 넣는 것이 맞는 것인지도 궁금합니다.

jaewooklee93 commented 4 years ago

175 과도 이어지는 질문이라고 생각됩니다

kooyunmo commented 4 years ago

GET api/article: Response with a JSON having a list of dictionaries for each article's title, content, and author. The value of the author must be the id of the author but not her username.

POST api/article: Create an article with the information given by request JSON body and response with 201. Posted article (with it's assigned id) should be included in response's content as JSON format.

kooyunmo commented 4 years ago

182 에서 JsonResponse 관련 부분 참고 바랍니다.