如何在 jinja2 中连接两个列表变量?
例如
GRP1 = [1, 2, 3]
GRP2 = [4, 5, 6]
{# This works fine: #}
{% for M in GRP1 %}
Value is {{M}}
{% endfor %}
{# But this does not: #}
{% for M in GRP1 + GRP2 %}
Value is {{M}}
{% endfor %}
因此,我尝试使用 + 连接两个列表(就像在 Python 中那样),但事实证明它们不是列表,而是 pythonxrange
对象:
jijna2 error: unsupported operand type(s) for +: 'xrange' and 'xrange'
有没有办法让我在同一个 for 循环中迭代 GRP1 和 GRP2 的串联?