我有一个这样的数组,想要获取内容。
Array
(
[0] => Array
(
[0] => 1
[id] => 1
[1] => Testnews
[title] => Testnews
[2] => Dies ist eine kleine <strong>Testnews!</strong>
[text] => Dies ist eine kleine <strong>Testnews!</strong>
[3] => 1
[type] => 1
[4] => 1
[timestamp] => 1
[5] => 0
[status] => 0
)
)
我尝试了以下方法:
{% for latest_news in news %}
{% for id, title in latest_news %}
id : {{ id }}
title : {{ title }}
{% endfor %}
{% endfor %}
那行得通,但我认为这不是正确的方法。
它应该是什么样子?