概要 Django REST Frameworkに再挑戦 その16 Comment Detail, Update, & Delete 参考サイト www.django-rest-framework.org www.codingforentrepreneurs.com Comment Detail, Update, & Delete EditとDetailを入れ替える。 class CommentEditAPIView(RetrieveAPIView): queryset = Comment.objects.all() serializer_class…