如何在jinja2模板中未定义变量时删除行

时间:2016-07-26 16:49:34

标签: python templates jinja2

我有一个简单的jinja2模板:

{% for test in tests %}
{{test.status}} {{test.description}}:
    {{test.message}}
    Details:
        {% for detail in test.details %}
        {{detail}}
        {% endfor %}
{% endfor %}

当'test'对象的所有变量都像这里定义时,哪个工作真的很好:

from jinja2 import Environment, PackageLoader
env = Environment(loader=PackageLoader('my_package', 'templates'), trim_blocks=True, lstrip_blocks=True, keep_trailing_newline=True)
template = env.get_template('template.hbs')
test_results = {
    'tests': [
        {
            'status': 'ERROR',
            'description': 'Description of test',
            'message': 'Some test message what went wrong and something',
            'details': [
                'First error',
                'Second error'
            ]
        }
    ]
}

output = template.render(title=test_results['title'], tests=test_results['tests'])

然后输出如下:

ERROR Description of test:
    Some test message what went wrong and something
    Details:
        First error
        Second error

但有时'test'对象可能没有'message'属性,在这种情况下会有一个空行:

ERROR Description of test:

    Details:
        First error
        Second error

是否可以使这个变量坚持整行?当变量未定义时使它消失?

1 个答案:

答案 0 :(得分:1)

如果没有消息,你可以在for循环中放置一个if条件以避免空行。

{% for test in tests %}
{{test.status}} {{test.description}}:
    {% if test.message %}
        {{test.message}}
    {% endif %}
    Details:
        {% for detail in test.details %}
        {{detail}}
        {% endfor %}
{% endfor %}