我正在寻找一个解决方法,如何在Django的模板中“遮蔽”上下文变量。
让我们在其中一个模板中使用以下结构:
{% block content %}
{# set context variables with a custom tag #}
{% paginator_ctx products %} {# sets `paginator' in context dict #}
{% for product in paginator.object_list %}
{# Render elements from _outer_ loop #}
{% paginator_ctx child_products %} {# !! replaces context !! #}
{% for cat in paginator.object_list %}
{# Render elements from _inner_ loop #}
{% endfor %}
{% include "paginator.html" %}
{% endfor %}
{# ?? how to restore the original context ?? #}
{% include "paginator.html" %} {# renders prev, next & current page number #}
{% endblock %}
我希望从示例中可以明显看出我需要实现的目标。在模板中使用本地范围,类似于它在Python中的工作方式。 或者我是从错误的一方拿走它?让通用模板依赖于上下文变量而不是在参数中传递值?
感谢。
更新 手动存储上下文变量有一些有点破解的解决方案:
{# outer block #}
{% with context_var as context_var_saved %}
{# inner/nested block overwriting context_var #}
{% with context_var_saved as context_var %}
{# process restored context_var #}
{% endwith %}
{# end of inner block #}
{% endwith %}
{# end of outer block #}
没有清洁解决方案?如果我需要存储更多变量或整个上下文怎么办?
答案 0 :(得分:1)
遇到类似的问题,我决定在我的global_scope
模板中创建一个base_site.html
块来包装所有内容,并专门用它来分配"多个块"上下文变量。
它是这样的:
>> base_site.html
{% block global_scope %}
<!DOCTYPE html>
<html>
...
<more blocks here>
</html>
{% endblock global_scope %}
然后在专门的模板中:
{% block global_scope %}
{# set context variables with a custom tag #}
{{ block.super }} {# <-- important! #}
{% endblock global_scope %}
{% block content %}
{# the context variable is available here #}
{% endblock %}
但是,使用这种方法,您必须仔细检查是否未覆盖其他人在模板层次结构中设置的任何变量。
此外,根据变量的大小,可能存在内存开销,即变量不会从上下文中弹出,直到模板的最后。