Django Book 翻译
菜单>:
TOC
返回
原文:
When Django compiles a template, it splits the raw template text into *nodes* . Each node is an instance of ``django.template.Node`` and has a ``render()`` method. Thus, a compiled template is simply a list of ``Node`` objects.
翻译:
当Django编译一个模板时,它将原始模板分成一个个 *节点* 。每个节点都是 ``django.template.Node`` 的一个实例,并且具备 ``render()`` 方法。于是,一个已编译的模板就是 ``Node`` 对象的一个列表。
备注:
译者: