gpt4 book ai didi

python - Django 模板的上下文变量范围?

转载 作者:太空宇宙 更新时间:2023-11-03 18:49:05 25 4
gpt4 key购买 nike

我正在寻找一种解决方案,如何在 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 #}

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

最佳答案

遇到类似的问题,我决定在 base_site.html 模板中创建一个 global_scope block 来包装所有内容,并专门使用它来分配“多个 block ”上下文变量。

事情是这样的:

>> 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 %}

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

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

关于python - Django 模板的上下文变量范围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18784450/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com