我有一个看起来像这样的数组。
my_array = [
{'first': 'foo'},
{'second': 'bar'},
{'third': 'baz'},
{'fourth': 'qux'}
]
我正在尝试使用液体模板渲染前两个项目。如何在不使用索引的情况下实现此目的?
感谢。
答案 0 :(得分:0)
您可以使用limit tag:
{% for thing in my_array limit:2 %}
<p>{{thing.whatever}}</p>
{% endfor %}