当前位置:   article > 正文

【django】模板继承详解_django模板继承

django模板继承

一、模板继承

模板继承和类的继承含义是⼀样的,主要是为了提⾼代码重⽤,减轻开发⼈员的⼯作量。

1.父模板的创建

a、项目工程目录下,创建templates目录,作为父模板,
在这里插入图片描述

b、在配置settings.py文件中配置模板,

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],  # 此处修改,
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
os.path.join(BASE_DIR,‘templates’)
  • 1

c、在父模板下创建子应用pages/books文件
在这里插入图片描述
d. 父模板代码:base.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{% block title %} {% endblock %}</title>

    {% block css %}

    {% endblock %}


</head>
<body>
    {% block content %}

    {% endblock %}

    {% block js %}

    {% endblock %}

</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

2.子模版的创建

a、在templates下创建login.html文件
在这里插入图片描述
b.子模版继承父模板,代码:books.html
标签extends:继承,写在⼦模板⽂件的第⼀⾏。

{% extends 'film/index2.html' %}
  • 1
{% extends 'base.html' %}

{% block title %}
    登录首页
{% endblock %}

{% block css %}
    <style>
        p{
            color:red
        }
    </style>
{% endblock %}

{% block content %}
    <P>姓名:<input type="text"></P>
    <P>密码:<input type="text"></P>
{% endblock %}

{% block js %}
    <script>alert('欢迎登录')</script>
{% endblock %}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

3、视图类路由

路由 path(r'books/', views.BooksView.as_view())

class BooksView(View):
    def get(self, request):
        """路由直接访问(GET): http://127.0.0.1:8087/books/books/"""
        return render(request, 'pages/books.html')
  • 1
  • 2
  • 3
  • 4

4、响应结果:

在这里插入图片描述

三.子应用模块中的模板继承

子应用的模板继承与上面类似,这样继承主要是为了项目目录以及代码阅读的时候更加清晰简易,新建模块和编辑模块内容相似之处较多,就在单独提取出来一个子应用的模板给新建和编辑页面继承使用,这里代码就不全贴出来了,下面的大体的创建思路

1.目录结构如下

在这里插入图片描述

2.父模板base.html

base.html
在这里插入图片描述

3.子应用模块的父模板feature_main.html继承父模板base.html

feature_main.html
在这里插入图片描述![

4.子应用模块子模版,new_feature.html继承子应用模板feature_main.html,并引入js

new_feature.html
在这里插入图片描述

注:模板继承时需注意block块的命名应是唯一的,否则将会存在冲突,无法加载该模块

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/769161
推荐阅读
相关标签
  

闽ICP备14008679号