assoc数组中的Twig循环

时间:2018-12-13 12:24:04

标签: loops for-loop twig

我有类似数组

Array (
    [data] => Array (
        [0] => tratata
        [1] => blabla
    )
    [data_key] => Array (
        [0] => the first key
        [1] =>  the second one
    )
)

我试图以这种方式显示它:

{% for key, value in L10_DATA %}
    <tr>
        <th>
            {{ value.data_key }}
        </th>
        <td>
            {{ value.data }}
        </td>
    </tr>
{% endfor %}

但是它不起作用:c能帮我吗?

我需要获得表格的王者,第一列为data_key,第二列为dataenter image description here

1 个答案:

答案 0 :(得分:2)

由于您的数据分为2个(子)数组,因此您将需要使用第一个数组的索引来访问第二个数组的数据

app.post('/callback', function (req, res) {});

demo