gpt4 book ai didi

flask - 如何分配 jinja2 变量值以供稍后在模板中使用?

转载 作者:行者123 更新时间:2023-12-03 16:21:59 25 4
gpt4 key购买 nike

如何分配 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>

任何帮助将不胜感激。

最佳答案

使用 {% 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)

关于flask - 如何分配 jinja2 变量值以供稍后在模板中使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45942749/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com