语法: | {{obj|filter__name:param}} |
Default | 如果一个变量是false或者为空,使用给定的默认值。否则,使用变量的值。例如: {{ value|default:"nothing" }} |
Length |
返回值的长度。它对字符串和列表都起作用。例如:
{{ value|length }}
如果 value 是 [‘a‘, ‘b‘, ‘c‘, ‘d‘],那么输出是 4。
|
Filesizeformat |
将值格式化为一个 “人类可读的” 文件尺寸 (例如 ‘13 KB‘, ‘4.1 MB‘, ‘102 bytes‘, 等等)。例如:
{{ value|filesizeformat }}
如果 value 是 123456789,输出将会是 117.7 MB。
|
Date | 如果 value=datetime.datetime.now(){{ value|date:"Y-m-d" }} |
Slice |
如果 value="hello world"
{{ value|slice:"2:-1" }}
|
Truncatechars |
如果字符串字符多于指定的字符数量,那么会被截断。截断的字符串将以可翻译的省略号序列(“...”)结尾。
参数:要截断的字符数
例如:
{{ value|truncatechars:9 }}
|
Safe |
Django的模板中会对HTML标签和JS等语法标签进行自动转义,原因显而易见,这样是为了安全。但是有的时候我们可能不希望这些HTML元素被转义,比如我们做一个内容管理系统,后台添加的文章中是经过修饰的,这些修饰可能是通过一个类似于FCKeditor编辑加注了HTML修饰符的文本,如果自动转义的话显示的就是保护HTML标签的源文件。为了在Django中关闭HTML的自动转义有两种方式,如果是一个单独的变量我们可以通过过滤器“|safe”的方式告诉Django这段代码是安全的不必转义。比如:
value="<a href="">点击</a>"
{{ value|safe}}
|
addslashes : | 添加反斜杠到任何反斜杠、单引号或者双引号前面。 这在处理包含JavaScript的文本时是非常有用的。 |
{% for key,val in dic.items %} <p>{{ key }}:{{ val }}</p> {% endfor %}
{% for person in person_list %} <p>{{ person.name }}</p> {% empty %} <p>sorry,no person here</p> {% endfor %}
{% for item in todo_list %} <p>{{ forloop.counter }}: {{ item }}</p> {% endfor %}
{% for object in objects %} {% if forloop.first %}<li class="first">{% else %}<li>{% endif %} {{ object }} </li> {% endfor %}
{% for country in countries %} <table> {% for city in country.city_list %} <tr> <td>Country #{{ forloop.parentloop.counter }}</td> <td>City #{{ forloop.counter }}</td> <td>{{ city }}</td> </tr> {% endfor %} </table> {% endfor %}
{% ifequal user currentuser %} <h1>Welcome!</h1> {% endifequal %}
{% ifequal section ‘sitenews‘ %} <h1>Site News</h1> {% endifequal %} {% ifequal section "community" %} <h1>Community</h1> {% endifequal %}
{% ifequal section ‘sitenews‘ %} <h1>Site News</h1> {% else %} <h1>No News Here</h1> {% endifequal %}
{% if %} 标签检查(evaluate)一个变量,如果这个变量为真(即,变量存在,非空,不是布尔值假),系统会显示在 {% if %} 和 {% endif %} 之间的任何内容,例如
{% if today_is_weekend %} <p>Welcome to the weekend!</p> {% endif %} {% else %} 标签是可选的: {% if today_is_weekend %} <p>Welcome to the weekend!</p> {% else %} <p>Get back to work.</p> {% endif %} {% if %}会对一个变量求值,如果它的值是“True”(存在、不为空、且不是boolean类型的false值),对应的内容块会输出。 {% if num > 100 or num < 0 %} <p>无效</p> {% elif num > 80 and num < 100 %} <p>优秀</p> {% else %} <p>凑活吧</p> {% endif %}
{% if athlete_list %} {% if coach_list or cheerleader_list %} We have athletes, and either coaches or cheerleaders! {% endif %} {% endif %}
{% with total=business.employees.count %} {{ total }} employee{{ total|pluralize }} {% endwith %
from django import template from django.utils.safestring import mark_safe register = template.Library()?? #register的名字是固定的,不可改变 @register.filter def filter_multi(v1,v2): return? v1 * v2 @register.simple_tag def simple_tag_multi(v1,v2): return? v1 * v2 @register.simple_tag def my_input(id,arg): result = "<input type=‘text‘ id=‘%s‘ class=‘%s‘ />" %(id,arg,) return mark_safe(result) from django import template from django.utils.safestring import mark_safe register = template.Library()?? #register的名字是固定的,不可改变 @register.filter def filter_multi(v1,v2): return? v1 * v2 @register.simple_tag def simple_tag_multi(v1,v2): return? v1 * v2 @register.simple_tag def my_input(id,arg): result = "<input type=‘text‘ id=‘%s‘ class=‘%s‘ />" %(id,arg,) return mark_safe(result)
{% comment %} This is a multi-line comment. {% endcomment %}
原文:https://www.cnblogs.com/leiyiming/p/12342272.html