它在django执行两次模板标签吗?

时间:2015-02-08 17:21:51

标签: django-templates django-custom-tags

如果我输入django template.html此代码

<p>{% if some_custom_template %} {%some_custom_template%} {% else %} nothing {% endif %}</p>

some_custom_template会执行两次吗?或者some_custom_template结果是缓冲的吗?

如果some_custom_template执行两次,我如何将第一个结果保存在某个模板变量中?

1 个答案:

答案 0 :(得分:1)

我相信它会被执行两次,但这取决于some_custom_template实际上是什么。但无论如何,您可以使用with template tag

缓存它
{% with cached_template=some_custom_template %}</p>
    <p>
       {% if cached_template %}
         {{ cached_template }}
       {% else %}
          nothing
       {% endif %}
    </p>
{% endwith %}

修改:使用上下文,您使用的是自定义 template_tag ,这是非常不同的。是的,每次调用它们时都会生成它们,并且它们不能被缓存。

更好的方法是将显示内容的逻辑移到模板标记中,然后删除模板中的if/then/else,如下所示:

@simple_tag(name='unread_notification_count', takes_context=True)
def unread_notification_count(context):
  if some_check:
    return some_value
  else:
    return "nothing"

然后在模板中只需调用模板标记:

<p>{% unread_notification_count %}</p>