基于Django2.1.7配置URLS
1.在项目文件中直接配置URL的相关代码如下:

from django.contrib import admin
from django.urls import path
from BookManageSystem import views
urlpatterns = [
  path('admin/',admin.site.urls),
  path('index',views.index),
]

2.在应用中创建urls.py,再到项目的URL文件中配置
在应用中的url文件进行URL配置代码如下

from django.urls import re_path
from BookManageSystem import views
urlpatterns = [
    re_path(r'^index$', views.index),
]

在项目的url文件中的配置代码如下:

from django.contrib import admin
from django.urls import re_path, include, path
urlpatterns = [
    path('^admin/',admin.site.urls),
    re_path(r'^', include('BookManageSystem.urls')),
    ]

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » django2.1.7 urls怎么写