• 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('我是视频的首页页面')

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

  • 相关阅读:
    MySQL--单表查询
    python库--pandas--Series.str--字符串处理
    如何 grep tab & 如何grep 减号(dash)
    png压缩
    如何无密码登陆远程机器?
    ssh中运行awk
    PHP 时区
    sublime使用
    nginx 50x故障分析
    nginx反向代理异常
  • 原文地址:https://www.cnblogs.com/xiximayou/p/11732611.html
Copyright © 2020-2023  润新知