HTMLへのリクエストに対してdjango restframeworkレスポンスを渡す方法。例: オブジェクトを含むリスト。html は article.html です。
残りのフレームワーク Response を使用してみました:
data= {'articles': Article.objects.all() }
return Response(data, template_name='articles.html')
このエラーが発生しています:
""" AssertionError at /articles/
.accepted_renderer not set on Response """
どこが間違っていたのか、教えてください。