2. url路由分配及模板渲染方式

django的路由系统

  • 路由解析原理

    • 当一个请求到来时
      1. 首先到项目目录下的 urls.py (即根 URLconf 模块)中,查找路由规则
      2. 根 URLconf 模块,里面定义了 urlpatterns 变量
      3. urlpatterns 是一个列表,包含了 django.urls.path / django.urls.re_path 对象
      4. 系统按顺序运行每个 url 模式,在匹配到第一个时停止匹配
      5. 一旦匹配成功,django 会导入并调用给定的视图
      6. 如果中间出错,或者未匹配到相应路由,则返回404界面
  • path、repath方法

    • 源码部分
urlpatterns = [
    path('home/', views.Index.as_view(), name='home'),
    path('detail///', views.Detail.as_view(), name='detail'),
    # path('detail/-/', views.Detail.as_view(), name='detail'),
]
path = partial(_path, Pattern=RoutePattern)
re_path = partial(_path, Pattern=RegexPattern)
def _path(route, view, kwargs=None, name=None, Pattern=None):
    if isinstance(view, (list, tuple)):
        # For include(...) processing.
        pattern = Pattern(route, is_endpoint=False)
        urlconf_module, app_name, namespace = view
        return URLResolver(
            pattern,
            urlconf_module,
            kwargs,
            app_name=app_name,
            namespace=namespace,
        )
    elif callable(view):
        pattern = Pattern(route, name=name, is_endpoint=True)
        return URLPattern(pattern, view, kwargs, name)
    else:
        raise TypeError('view must be a callable or a list/tuple in the case of include().')
  • path(route, view, kwargs=None, name=None)

    • route 是一个字符串的url规则
    • view 是个视图
    • kwargs 额外参数,传递给view,必须是一个字典
    • name url的命名
  • 在url中捕获参数

    • 在url规则中使用<变量名>可以捕获url中的值
    • 传递给视图
    • 捕获的值是 字符串
urlpatterns = [
    path('detail///', views.Detail.as_view(), name='detail'),
    # path('detail/-/', views.Detail.as_view(), name='detail'),
]

class Detail(View):
    def get(self,request,name,age):
        return HttpResponse('欢迎{}岁的{},来到django大家庭'.format(age, name))
  • 路径转换器
    案例:
    常用的转换器:

    • str 匹配除了 / 路径分隔符之外的所有字符串
    • int 匹配任意整数
    • slug 匹配任意ascii字符 加上连字符和下划线
    • uuid 格式化的id,用来资源区分
    • path 匹配任意非空字符
  • re_path

    • 案例 python 中 正则表达式的分组命名
      r'something/(?Ppattern)/(?Ppattern)/'
urlpatterns = [
    re_path(r'date/(?P\d{4})/(?P[1-9]|1[0-2])/', views.Date.as_view(), name='date'),
]

class Date(View):
    def get(self, request,year, month):
        return HttpResponse('查询{}年{}月的学生信息'.format(year, month))
  • django中 url 搜索的是什么?

    • 只搜索路径部分,跟参数,以及请求方法(get,post)无关
    • 同一个url 可以匹配 get, post
  • 包含其他URLconfs

    • include
urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('index.urls')),  # include('app.urls')
]
  • 传递额外参数
    • path,re_path 方法中,传递一个kwargs 的字典参数
    • 当kwargs 中的key 与 url捕获中的key 一致的时候,以kwargs为准
    • 若在跟URLconf下(即项目目录下的urls.py)中设置额外参数,则相当与在对应的app下的每个路由中添加该额外参数
# 根 urls.py下
urlpatterns = [
    path('', include('index.urls'), kwargs={'status':200, 'age':16}),
]
# app下
urlpatterns = [
    path('detail///', views.Detail.as_view(), name='detail', kwargs={'status':200, 'age':16}),
]

class Detail(View):
    def get(self,request,name,age,status):
        if status == 200:
            return HttpResponse('欢迎{}岁的{},来到django大家庭'.format(age, name))
  • redirect 页面重定向
class Index(View):

    def get(self,request):
        return redirect('http://www.baidu.com')
  • url 命名 + reverse
    切记不可设置app_name,会报错
    页面重定向 ,跳转页面 (即登录之后, 某个操作之后)
urlpatterns = [
    path('home/', views.Index.as_view(), name='home'),
    path('login/', views.Login.as_view(), name='login'),
]

class Login(View):
    def get(self,request):
        return redirect(reverse('home'))


class Index(View):
    def get(self,request):
        return HttpResponse('我是主页')
  • app_name 推荐使用
    定义在 app文件夹下的urlconf模块中
    app_name = app名称
# app的名字
app_name = 'index'

urlpatterns = [
    path('home/', views.Index.as_view(), name='home'),
    path('login/', views.Login.as_view(), name='login'),
]

class Login(View):

    def get(self, request):
        return redirect(reverse('index:home'))

class Index(View):

    def get(self,request):
        return HttpResponse('我是主页')

模板系统

  • html 源码写到模板文件中


    2. url路由分配及模板渲染方式_第1张图片
    html.png
  • 模板路径设置

TEMPLATES = [
    {
        #模板引擎 django后台的一个DjangoTemplates模板引擎,将Templates里的文件转换为html文件,返回给前端,前端浏览器可以正常显示
        'BACKEND': 'django.template.backends.django.DjangoTemplates',  
        
        #此处为指定全局项目存放模板的路径,DIRS 定义一个目录列表,模板引擎按列表顺序搜索这些目录以查找模板源文件。将templates放在主项目目录下.
        'DIRS': [os.path.join(BASE_DIR, 'templates')], 
      
        #APP_DIRS告诉模板引擎是否应该进入每个已安装的应用中查找模板,值为True则模板会去安装了的app下面的templates文件夹查找模板。。所以我们也可以在每个app的里面创建模板目录templates存放模板,这种方式需要将这个app添加到setting.py文件的INSTALLED_APPS列表中.
        'APP_DIRS': True,   

        #针对模板引擎做一些额外的配置信息
        'OPTIONS': {         
            #上下文加载器context_processors,(上下文传参)
            'context_processors': [      
                #渲染报错信息传递到context_processors,最终将报错信息显示到到网页上
                'django.template.context_processors.debug', 
                #渲染请求信息传递到context_processors
                'django.template.context_processors.request',
                #渲染认证信息传递到context_processors
                'django.contrib.auth.context_processors.auth', 
                #渲染消息提示信息传递到context_processors
                'django.contrib.messages.context_processors.messages',
            ],
            #在所有的html,默认添加{% load static %}
            'builtins':['django.templatetags.static'] 
        },
    },
]
  • 渲染
    return render(request, 'teacher/index.html')
class Index(View):
    def get(self,request):
        return render(request, 'index/home.html')
2. url路由分配及模板渲染方式_第2张图片
渲染.png

你可能感兴趣的:(2. url路由分配及模板渲染方式)