django-template层

Posted yc913344706

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django-template层相关的知识,希望对你有一定的参考价值。

纲领

template层主要负责接收view层传过来的上下文字典(如果有),并取其中的值,根据模版语言编写成html、xml、csv等等

使用模板可以大幅减少在编写html、xml、csv等时的重复性代码

模板继承

解决应用程序有较多html页面时,重复写相同代码的问题

其实就是html页面之间的相互继承

django中的模板语言

       https://docs.djangoproject.com/en/2.0/ref/templates/language/

模板语言类型

variables

格式

{{ variable }}

注:

可以使用点(.)来取到variable的属性(如果有)

filters

格式

{{ value | ${filter_key}[${filter_param}] }}

官方文档

https://docs.djangoproject.com/en/2.0/ref/templates/builtins/#ref-templates-builtins-filters

tags

格式

{% tag %}

注:

如if、for、url、block、extends、comment等

官方文档

https://docs.djangoproject.com/en/2.0/ref/templates/builtins/#ref-templates-builtins-tags

comments

格式

{# ${comment} #}

注:

comment中也可以使用variable、tag

如{# {% if foo %}bar{% else %} #}

此种格式的comment只适用与单行注释,如果要使用多行注释,请使用comment的tag

以上是关于django-template层的主要内容,如果未能解决你的问题,请参考以下文章

Django-Template:在标签块中获取变量!

VSCode 自定义代码格式和语言自动缩进(Django-Template 缩进)

django-template 中的不同模型

Django-template模板语言

如何在脚本中使用 django-template 而不是 jinja2?

Django框架详解