Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该如何在 jinja2 中做一段时间( x < y )?我看过 jinja2 文档,似乎它们只支持声明的数组变量的循环,而根本不支持 while()。
我认为您与Jinja2最接近的选择是使用for with range:
{% range number from 3 to 6 %} {{ number }} (...) {% endrange %}
您可以从程序中传递变量以在循环中使用它们。