zoukankan      html  css  js  c++  java
  • 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后,这里的同样也要更改,较为繁琐。

  • 相关阅读:
    c# 框架学习(nop )总结-------删除功能
    c# 框架学习(nop )总结-------编辑功能
    约束
    索引
    受限操作的变通解决方案
    删除数据表
    修改已有数据表
    定义外键
    定义主键
    定义默认值
  • 原文地址:https://www.cnblogs.com/xiximayou/p/11732611.html
Copyright © 2011-2022 走看看