20

我正在尝试将一些变量从子页面传递给模板。这是我的python代码:

    if self.request.url.find("&try") == 1:
        isTrying = False
    else:
        isTrying = True

    page_values = {
        "trying": isTrying
    }

    page = jinja_environment.get_template("p/index.html")
    self.response.out.write(page.render(page_values))

模板:

<html>
  <head>
    <link type="text/css" rel="stylesheet" href="/css/template.css"></link>
    <title>{{ title }} | SST QA</title>

    <script src="/js/jquery.min.js"></script>

  {% block head %}{% endblock head %}
  </head>
  <body>
    {% if not trying %}
    <script type="text/javascript">
    // Redirects user to maintainence page
    window.location.href = "construct"
    </script>
    {% endif %}

    {% block content %}{% endblock content %}
  </body>
</html>

和孩子:

{% extends "/templates/template.html" %}
{% set title = "Welcome" %}
{% block head %}
{% endblock head %}
{% block content %}
{% endblock content %}

问题是,我想将变量“trying”传递给父级,有没有办法做到这一点?

提前致谢!

4

4 回答 4

19

Jinja2 Tips and Tricks 页面上的示例完美地解释了这一点,http://jinja.pocoo.org/docs/templates/#base-template。本质上,如果您有一个基本模板

**base.html**
<html>
    <head>
        <title> MegaCorp -{% block title %}{% endblock %}</title>
    </head>
    <body>
        <div id="content">{% block content %}{% endblock %}</div>
    </body>
</html>

和一个子模板

**child.html**
{% extends "base.html" %}
{% block title %} Home page {% endblock %}
{% block content %}
... stuff here
{% endblock %}

任何 python 函数调用 render_template("child.html") 都会返回 html 页面

**Rendered Page**
<html>
    <head>
        <title> MegaCorp - Home page </title>
    </head>
    <body>
        <div id="content">
            stuff here...
        </div>
    </body>
</html>
于 2014-03-22T19:52:01.850 回答
6

我认为您希望在基本布局中突出显示活动菜单,并且您需要这样的东西

{% extends 'base.html' %}
{% set active = "clients" %}

然后使用可以在base.html中使用“活动”

于 2020-05-24T05:59:39.480 回答
4

您只需要在扩展模板之前声明该变量,因此扩展模板将可以访问该变量trying

{% set trying = True %}  <----------- declare variable

{% extends "/templates/template.html" %}
{% set title = "Welcome" %}
{% block head %}
{% endblock head %}
{% block content %}
{% endblock content %}

几年后,但希望它可以帮助后来者

于 2021-03-09T18:20:25.073 回答
2

我不明白你的问题。当您将变量传递给上下文时(就像您尝试所做的那样),这些变量将在子级和父级中可用。要将标题传递给父级,您必须使用继承,有时与 super 结合使用:http: //jinja.pocoo.org/docs/templates/#super-blocks

另请参阅此问题:Overriding app engine template block inside an if

于 2013-01-10T13:05:49.817 回答