1

我正在寻找如何在 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 #}

没有更清洁的解决方案?如果我需要存储更多变量或整个上下文怎么办?

4

1 回答 1

2

遇到类似的问题,我决定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 %}

但是,使用这种方法,您必须仔细检查您是否没有覆盖其他人在模板层次结构中设置的任何变量。

此外,根据变量的大小,可能存在内存开销,因为直到模板结束时变量才会从上下文中弹出。

于 2014-10-27T12:26:19.097 回答