When the server successfully handles a request, it responds with a JSONResponse for GET (except api/signout) and responds with a HTTPResponse for POST, PUT, and DELETE.
라고 명시되어 있습니다.
1.
#185 에서는 POST 시 JsonResponse를 사용해도 된다고 하셨고
#158 에서는 HttpResponse를 사용하라고 하셨습니다.
POST / PUT response에서 JsonResponse를 사용해도 되는 것이 맞나요?
2.
GET에서는 JsonResponse를 사용하라고 하셨는데,
유저 authenticate이 안되어있거나, 존재하지 않는 article/comment를 get하려고 할 때에도 HttpResponse가 아닌 JsonResponse를 사용해야 하나요?
만약 그렇다면, JsonResponse의 데이터로는 빈 dict를 보내면 되나요?
When the server successfully handles a request, it responds with a JSONResponse for GET (except api/signout) and responds with a HTTPResponse for POST, PUT, and DELETE. 라고 명시되어 있습니다.
1. #185 에서는 POST 시 JsonResponse를 사용해도 된다고 하셨고 #158 에서는 HttpResponse를 사용하라고 하셨습니다.
POST / PUT response에서 JsonResponse를 사용해도 되는 것이 맞나요?
2. GET에서는 JsonResponse를 사용하라고 하셨는데, 유저 authenticate이 안되어있거나, 존재하지 않는 article/comment를 get하려고 할 때에도 HttpResponse가 아닌 JsonResponse를 사용해야 하나요? 만약 그렇다면, JsonResponse의 데이터로는 빈 dict를 보내면 되나요?