码迷,mamicode.com
首页 > 其他好文 > 详细

django开发问题总结

时间:2019-11-24 13:39:40      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:keyword   开发问题总结   pre   问题   match   att   argument   sem   view   

django开发问题总结
报错如下

NoReverseMatch at /blog/
Reverse for 'blog_detail' with keyword arguments '{'blog_id': 10}' not found. 1 pattern(s) tried: ['blog/detail/(?P[1-9]+)/$']

    url(r'^detail/(?P<blog_id>[1-9]+)/$', views.detail,name='blog_detail'),

改为

    url(r'^detail/(?P<blog_id>\d+)/$', views.detail,name='blog_detail'),
#或改为

    url(r'^detail/(?P<blog_id>[0-9]+)/$', views.detail,name='blog_detail'),

django开发问题总结

标签:keyword   开发问题总结   pre   问题   match   att   argument   sem   view   

原文地址:https://www.cnblogs.com/anyux/p/11922049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!