如何指定jinja2变量值以便稍后在模板中使用?
{% if 'clear' in forcast_list[4] %}
{% img = "sunny.png" %}
{% elif "cloudy" in forcast_list[4] %}
{% img = "sun-cloudy-thunder.png" %}
{% endif %}
<div style="background: right bottom no-repeat url('../static/img/{{img}}')" class="weather-icon-pos">
<!-- weatehr Icon div -->
</div>
任何帮助将不胜感激。
答案 0 :(得分:2)
使用{% set %}
:
{% if 'clear' in forcast_list[4] %}
{% set img = "sunny.png" %}
{% elif "cloudy" in forcast_list[4] %}
{% set img = "sun-cloudy-thunder.png" %}
{% endif %}
有关jinja2 here中作业的更多信息。
或者只是在python中执行条件并将结果传递给jinja2模板:
if 'clear' in forcast_list[4]:
img = "sunny.png"
elif 'cloudy' in forcast_list[4]:
img = "sun-cloudy-thunder.png"
...
return render_template('foo.html', img=img)