在模板中,我有{% url "news.views.article" article=article.id %}
where article.id 是当前正在显示的文章的 ID。我的 urls.py 包含以下内容:
url(r'^news/$', 'news.views.index'),
url(r'^news/article/(?P<article>\d{1,4})/$', 'news.views.article'),
但是,当我加载包含上述模板标签的页面时,我得到了这个:
NoReverseMatch at /news/
Reverse for '"news.views.article"' with arguments '()' and keyword arguments '{'article': 2}' not found.