我刚刚开始使用django,现在我一直收到此错误。同样也不确定如何为视图赋予其他参数(例如,URL)。
将感谢您的帮助
在urls.py
中path('page/<path:url>', TemplateView.as_view(template_name='pages/page.html'))
<a class="dropdown-item" href="{% url 'channels:page' post.url %}" target="_blank">
答案 0 :(得分:2)
只需将name='page'
添加到您的路径即可进行反向呼叫
path('page/', TemplateView.as_view(template_name='pages/page.html'), name='page')