django-URL别名的作用六

接include函数那一节。

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

基本目录:

 

 book\urls.py

from django.urls import path
from .  views

urlpatterns = [
    path('',views.index,name='index'),path(news/',views.news,1)">newsvideos/videos
from django.shortcuts  render
from django.http  HttpResponse

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

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

book\templates\index.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</a></p>
<p><a href={% url '%}>news</a></p>
<p><a href={% url '%}>videos</a></p>
</body>
</html>

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

 

 点击news

 

 点击videos

 

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

 

相关文章

注:所有源代码均实测运行过。所有源代码均已上传CSDN,请有...
继承APIView和ViewSetMixin;作用也与APIView基本类似,提供...
一、Django介绍Python下有许多款不同的 Web 框架。Django是重...
本文从nginx快速掌握到使用,gunicorn快速掌握到使用,实现小...
uniapp微信小程序订阅消息发送服务通知
Django终端打印SQL语句 1 Setting配置: 2 默认python 使用的...