在Django中使用{%url%}时的通用视图NoReverseMatch

时间:2012-10-23 18:00:46

标签: python django django-templates django-urls django-generic-views

我有问题从模板base.html执行反向命令'url'。

URLS.conf 我的文件如下所示:

dic_info_artigo = {
                  'queryset': Artigo.modificado.all(),
                  'date_field': 'data_pub',
}

urlpatterns = patterns('django.views.generic.date_based',
    (r'^$', 'archive_index', dic_info_artigo,'artigos'),

    (r'^(?P<year>\d{4})/$','archive_year', dic_info_artigo,'artigos_ano'),
    (r'^(?P<year>\d{4})/(?P<month>\w{3})/$',
        'archive_month', dic_info_artigo,'artigos_mes'),
    (r'^(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/$',
        'archive_day', dic_info_artigo,'artigos_dia'),
    (r'^(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$',
        'object_detail', dic_info_artigo,'detalhe_artigo'),
)

base.html文件

<a href="{% url artigos %}"> Artigos </ a>

错误:

字典更新序列元素#0的长度为1;需要2个

已经尝试使用参数'name =',我更改了值,但它无法正常工作

url(r'^$', 'archive_index', dic_info_artigo, name='artigos'),

我做错了什么?有什么提示吗?

感谢。

2 个答案:

答案 0 :(得分:1)

错误消息表明您尝试使用以下内容命名视图:

(r'^my_url$', 'my_view', 'my_view')

但是,第三个参数应该是字典,而不是视图的名称。

为防止出现此类错误,建议您始终使用url快捷方式并命名网址格式:

url(r'^my_url$', 'my_view', name='my_view')

但是,如果愿意,您可以将空字典作为第三个参数传递:

(r'^my_url$', 'my_view', {}, 'my_view')

您发布的urls.py看起来没问题,所以问题可能在另一个urls.py。如果幸运的话,完整的回溯可能会为您提供发生错误的模块的确切行。

答案 1 :(得分:0)

使用url()命名网址并在模板文件中尝试以下操作。

{% url 'artigos' %}