2021/6/15 django 模板層
阿新 • • 發佈:2021-06-15
模板層,只需要記住兩個特殊符號
{{ }} --> 變數相關
{% %} --> 邏輯相關
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 引數傳入 %}