微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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后,这里的同样也要更改,较为繁琐。

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐