我真的很困惑为什么我的URL调度程序不匹配此URL

http://127.0.0.1:8000/2011/jun/26/third-entry/


这是我的主要网址分配器的外观

urlpatterns = patterns('',
    (r'^admin/', include(admin.site.urls)),
    (r'^blog/', include('djangoblog.blog.urls')),
)


在我的博客文件夹中,我还有另一个URL分配器

urlpatterns = patterns('django.views.generic.date_based',
    #regex is passed to object_detail which is the name of the generic view that will pull out a single entry
    (r'^(?P<year>d{4})/(?P<month>[a-z]{3})/(?P<day>w{1,2})/(?P<slug>[-w]+)/$', 'object_detail', dict(info_dict, slug_field='slug',template_name='blog/detail.html')),
)


我也没有运气尝试过这个网址

http://127.0.0.1:8000/blog/2011/jun/26/third-entry/


我一定会错过一些非常简单的东西...

最佳答案

您的正则表达式是错误的。

(?P<year>d{4})应该是(?P<year>\d{4})

URI的其他部分也是如此:


(?P<day>\d{1,2})
(?P<slug>[-\w]+)

关于python - 为什么我的Django URL Dispatcher无法正常工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6500090/

10-13 09:00