模板层,只需要记住两个特殊符号
{{ }} --> 变量相关
{% %} --> 逻辑相关
1. 模板语法传值
后端传值
return render(request, '.html', {'前端调用名称':后端变量名})
{{ 前端调用名称 }/locals()}
前端自动获取
{% load static %}
2. 变量
{{ 变量名 }}
变量名可以是字母、数字、下划线的组合
不能出现空格 .
.的查询顺序
字典查询
属性或方法查询
数字索引查询
如果变量值存在,则调用变量值,否则输出空白字符
filters过滤器
常用语法
{{ 变量名 }}
{{ 逻辑判断 }}
app01/templatetags/xxx.py
{% load xxx %} 专门导入xxx.py
变量
{{ 变量名 }}
变量名中可以包含字母、数字、下划线
不能存在空格、.
.在模板语法的调运顺序为:
字典
属性、方法(优先属性)
数字索引
filters过滤器(常用)
{{ 变量名|filter:参数 }}
length
default|""
filesizeformat
cut:""
join:"seq"
date:"Y-m-d H:i:s"
date:timeuntil:date
date:timesince:date
slice:"start:end:step"
truncatechars:int
truncatewords:int
safe
自定义过滤器
app01/templatetags/.py
form django import template
register = template.Library()
@register.filter(name='xxx')
def zzw(value, arg):
return xxx
tags 标签
{% for in %}
{% empty %}
{% endfor %}
forloop参数
.counter
.counter0
.revcounter
.revcounter0
.first
.last
.parentloop
{% if 比较/逻辑/成员/身份 %}
{% elif %}
{% else %}
{% endif %}
{% with a=变量名 %}
{% endwith %}
{% csrf_token %}
{# #}
自定义simple_tag
app01/templatetags/.py
from django import template
register = template.Library()
@register.simple_tag(name='xxx')
def xxx(a, b, c):
return '{} + {} + {}'.format(a,b,c)
{% xxx "1" "2" "3" %} ---> 1 + 2 + 3
模板
{% extends '.html' %}
块
{% block zzw %}
定义块
{% endblock %}
继承后
{% block zzw %}
填充块
{% endblock %}
组件:导入存放在html文件中,具有特定功能的html代码
{% include '.html' %}
自定义 inclusion_tag
app01/templatetags/my_inclusion_tag.py
from django import template
register = template.Library()
@register.inclusion_tag('zzw.html')
def xxx():
return {'变量名':'变量值'}/locals()
zzw.html
使用xxx传入的变量名,对html文件进行一定的修改
index.html
{% load my_inclusion_tag %}
{% xxx 参数传入 %}