如何将任何请求的 django restframework 响应传递给 html。示例:包含对象的列表,html 为articles.html。
我尝试使用休息框架 Response :
data= {'articles': Article.objects.all() }
return Response(data, template_name='articles.html')
我收到此错误:
""" AssertionError at /articles/
.accepted_renderer not set on Response """
我哪里出错了,请建议我。