如果我输入django template.html
此代码
<p>{% if some_custom_template %} {%some_custom_template%} {% else %} nothing {% endif %}</p>
some_custom_template
会执行两次吗?或者some_custom_template
结果是缓冲的吗?
如果some_custom_template
执行两次,我如何将第一个结果保存在某个模板变量中?
答案 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>