Django Book 翻译
菜单>:
TOC
返回
原文:
Sometimes, your inclusion tags need access to values from the parent templates context. To solve this, Django provides a ``takes_context`` option for inclusion tags. If you specify ``takes_context`` in creating a template tag, the tag will have no required arguments, and the underlying Python function will have one argument: the template context as of when the tag was called.
翻译:
有时候,你的包含标签需要访问父模板的context。为了解决这个问题,Django提供了一个 ``takes_context`` 选项。如果你在创建模板标签时,指明了这个选项,这个标签就不需要参数,并且下面的Python函数会带一个参数:就是当这个标签被调用时的模板context。
备注:
译者: