如何在jinja2中使用模板变量中的特殊字符?

时间:2015-03-30 11:24:33

标签: python templates jinja2

我有一个要求,我想在jinja2中呈现包含".""..""/""//"的值。

例如我有一本字典:

values= {'pre_package_information[1]/comment': 'Device: 14.2', 'post_package_information[1]/comment': 'Device: 14.2-2'}

现在我使用jinja呈现此值:

mssg= "Test Succeeded!! Checking Device version for 14.2 release {{pre_package_information[1]/comment}}"
jinja2.Template(mssg).render(values)

但它给出了错误:

jinja2.exceptions.UndefinedError: 'pre_package_information' is undefined

看起来它没有在模板中使用"[""/"。如何传递这些特殊字符。我遇到了其他字符的问题,例如"."".."

2 个答案:

答案 0 :(得分:3)

Jinja要求所有顶级名称都是有效的Python标识符;请参阅Notes on identifiers section

  

Jinja2使用常规的Python 2.x命名规则。有效标识符必须与[a-zA-Z_][a-zA-Z0-9_]*匹配。

提供符合该要求的标识符,或将您的字典包装在另一个字典中以间接查找您的密钥:

values = {'pre_package_information[1]/comment': 'Device: 14.2',  'post_package_information[1]/comment': 'Device: 14.2-2'}
mssg= ("Test Succeeded!! Checking Device version for 14.2 release "
       "{{values['pre_package_information[1]/comment']}}")
jinja2.Template(mssg).render(values=values)

请注意,此处values字典作为关键字参数传入,因此它可以在模板中以values形式进行访问。

演示:

>>> import jinja2
>>> values = {'pre_package_information[1]/comment': 'Device: 14.2',  'post_package_information[1]/comment': 'Device: 14.2-2'}
>>> mssg= ("Test Succeeded!! Checking Device version for 14.2 release "
...        "{{values['pre_package_information[1]/comment']}}")
>>> jinja2.Template(mssg).render(values=values)
u'Test Succeeded!! Checking Device version for 14.2 release Device: 14.2'

答案 1 :(得分:1)

您在模板中访问变量的方式需要像这样

{{ values['pre_package_information[1]/comment'] }}

并像render(values=values)

一样调用渲染

就像在python中一样,你不能拥有带有特殊字符的变量