DRF | 댓글수정
이거말고는 에러가 전혀 뜨지않아서 어디서 에러가 나는지 찾기가 어려웠다 파라미터로 post_id를 사용하지도 않아서 다른데서 에러가 뜬다고 생각했다. 우선 post_id를 파라미터로 사용하는 다른 메소드를 찾아보다가 urls에서 post_id를 받아는 오는걸 알게되었고 이걸 사용하지 않더라도 파라미터에 입력해줘야 하나? 라고 생각하면서 코드를 수정했다. class CommentDetailAPIView(APIView): def delete(self, request, post_id, comment_id): comment=get_object_or_404(PostComment, id=comment_id) print(comment) if request.user == comment.user: comment.dele..