django-URL别名的作用(六)

时间:2022-07-23
本文章向大家介绍django-URL别名的作用(六),主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

接include函数那一节。

作用:为url地址取一个名称,这样在html中引用的时候,无论后台url怎么变,都可以访问到对应的界面,可以减少更改的次数。

基本目录:

bookurls.py

from django.urls import path
from . import views

urlpatterns = [
    path('', views.index,name='index'),
    path('news/', views.news,name='news'),
    path('videos/', views.videos,name='videos'),
]

bookviews.py

from django.shortcuts import render
from django.http import HttpResponse

# Create your views here.
def index(request):
    return render(request,'index.html')

def news(request):
    return HttpResponse('我是新闻的首页页面')

def videos(request):
    return HttpResponse('我是视频的首页页面')

booktemplatesindex.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        p{font-size: 28px;}
    </style>
</head>
<body>
<p><a href={% url 'index'%}>index</a></p>
<p><a href={% url 'news'%}>news</a></p>
<p><a href={% url 'videos'%}>videos</a></p>
</body>
</html>

当我们启动服务器后,会首先调用bookviews.py中的index函数,跳转到index.html

点击news

点击videos

如果我们不取名字,那么在html中要用"http://localhost:8000/videos",这样虽然也有相同的作用,但是更改urls里面的path后,这里的同样也要更改,较为繁琐。