APIview의 기본적인 골격은 아래와 같다. class Class_name(APIView): def method_name(self, request, format=None): # 해당 HTTP method를 어떻게 동작시킬지 정의 method_name으로는 HTTP method인 get, post, delete 등이 존재한다. APIView를 상속 받아서 원하는 기능을 구현하기 위한 HTTP method를 구현하면 된다. ✅ models.py from django.db import models from django.conf import settings # Create your models here. class Blog(models.Model): title = models.CharField(max_leng..