在Jinja2中,如何测试变量是否未定义?


190

从Django转换后,我习惯于执行以下操作:

{% if not var1 %} {% endif %}

如果我没有将var1放入上下文中,它就可以工作。Jinja2给了我一个未定义的错误。有没有简单的说法{% if var1 == None %}或类似的说法?

Answers:



32

{% if variable is defined %}如果变量为,则为true None

由于not is None不允许,这意味着

{% if variable != None %}

确实是您唯一的选择。


如果variable始终将if 评估为True不为None时,{% if variable != None %}则等效于{% if variable %}
杜鹃花

如果你想检查None使用小写none {% if variable is not none %}
菲利普·阿尔瓦雷斯

14

您还可以在jinja2模板中定义一个变量,如下所示:

{% if step is not defined %}
{% set step = 1 %}
{% endif %}

然后您可以像这样使用它:

{% if step == 1 %}
<div class="col-xs-3 bs-wizard-step active">
{% elif step > 1 %}
<div class="col-xs-3 bs-wizard-step complete">
{% else %}
<div class="col-xs-3 bs-wizard-step disabled">
{% endif %}

否则(如果您不使用{% set step = 1 %}),上面的代码将抛出:

UndefinedError: 'step' is undefined

12

在环境设置中,我们有undefined = StrictUndefined,它可以防止将未定义的值设置为任何值。这修复了它:

from jinja2 import Undefined
JINJA2_ENVIRONMENT_OPTIONS = { 'undefined' : Undefined }

5

如果需要,请考虑使用默认过滤器。例如:

{% set host = jabber.host | default(default.host) -%}

或在结尾处使用更多带有“硬编码”的后备值,例如:

{% set connectTimeout = config.stackowerflow.connect.timeout | default(config.stackowerflow.timeout) | default(config.timeout) | default(42) -%}

1

{% if variable is defined %} 用于检查某些内容是否未定义。

{% if not var1 %}如果您将变量默认设置为False,则可以使用,例如

class MainHandler(BaseHandler):
    def get(self):
        var1 = self.request.get('var1', False)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.