概要 Django REST Frameworkに再挑戦 その17 Comment URLs & Post Get API Urls 参考サイト www.django-rest-framework.org www.codingforentrepreneurs.com Comment URLs & Post Get API Urls CommentListAPIViewのコードを修正する。 class CommentListAPIView(ListAPIView): # queryset = Post.objects.all() serialize…