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

django2.0关于path匹配路径页面刷新不出来的问题

时间:2018-07-06 20:26:02      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:from   element   cti   returns   com   文档   out   ofo   none   

下面是官方文档的内容,如果在urls.py中使用到正则匹配路径(^$)的时候,就需要使用re_path,而不能使用path,不然页面会显示404错误,

如果未用到正则,那么使用path即可。

re_path()?

re_path(routeviewkwargs=Nonename=None)?

Returns an element for inclusion in urlpatterns. For example:

from django.urls import include, re_path

urlpatterns = [
    re_path(r‘^index/$‘, views.index, name=‘index‘),
    re_path(r‘^bio/(?P<username>\w+)/$‘, views.bio, name=‘bio‘),
    re_path(r‘^weblog/‘, include(‘blog.urls‘)),
    ...
]

下面是没有使用正则匹配路径,使用path即可。

from django.urls import include, path

urlpatterns = [
    path(‘index/‘, views.index, name=‘main-view‘),
    path(‘bio/<username>/‘, views.bio, name=‘bio‘),
    path(‘articles/<slug:title>/‘, views.article, name=‘article-detail‘),
    path(‘articles/<slug:title>/<int:section>/‘, views.section, name=‘article-section‘),
    path(‘weblog/‘, include(‘blog.urls‘)),
    ...
]

django2.0关于path匹配路径页面刷新不出来的问题

标签:from   element   cti   returns   com   文档   out   ofo   none   

原文地址:https://www.cnblogs.com/lianxuebin/p/9275278.html

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