DRF의 Requests 객체 https://www.django-rest-framework.org/api-guide/requests/ Requests - Django REST framework www.django-rest-framework.org 메소드 종류 설명 request.method HTTP Request 메소드 종류 GET, POST, PUT, PATCH, DELETE 등 request.content_type body에 들어갈 Media type request.data body에 들어가는 데이터 전체 request.FILES file 형식의 객체 request.FILES.getlist 여러 개의 file 형식 객체들 (list 형태) request.query_params URL Query Par..