Twig变量错误

时间:2012-04-25 21:40:25

标签: twig

我在PHP中有数组:     

    array(
        'name1' => 'one',
        'name2' => 'two',
        'name3' => 'three'
    )
    

但是在树枝上:     

    {% for i in range(1, 3) %}
        {{'name' ~ i}}
    {% endfor %}
    

给我:     

    1
    2
    3
    

请帮帮我。感谢。

1 个答案:

答案 0 :(得分:0)

你可以这样做:

  {% for i in range(1, 3) %}
        {{ attribute(_context, 'name' ~ i) }}
  {% endfor %}

拥有:

one
two
three