接include函数那一节。
作用:为URL地址取一个名称,这样在HTML中引用的时候,无论后台url怎么变,都可以访问到对应的界面,可以减少更改的次数。
基本目录:
book\urls.py
from django.urls import pathfrom . vIEwsurlpatterns = [ path('',vIEws.index,name='index'),path(news/',vIEws.news,1)">newsvIDeos/vIDeosfrom django.shortcuts renderfrom 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后,这里的同样也要更改,较为繁琐。
总结
以上是内存溢出为你收集整理的django-URL别名的作用(六)全部内容,希望文章能够帮你解决django-URL别名的作用(六)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)