Django Book 翻译
菜单>:
TOC
返回
原文:
To ease the creation of these types of tags, Django provides a helper function, ``simple_tag`` . This function, which is a method of ``django.template.Library`` , takes a function that accepts one argument, wraps it in a ``render`` function and the other necessary bits mentioned previously, and registers it with the template system.
翻译:
为了简化这类标签,Django 提供了一个帮助函数: ``simple_tag`` 。这个函数是 ``django.template.Library`` 的一个方法,它接受一个只有一个参数的函数作参数,把它包装在 ``render`` 函数和之前提及过的其他的必要单位中,然后通过模板系统注册标签。
备注:
译者: