如何使用Template Toolkit访问数组的元素?

时间:2016-04-05 07:20:05

标签: arrays perl loops template-toolkit

我想使用模板工具包直接访问数组元素。

e.g。 我们可以很容易地做到这一点,

[% FOREACH item IN array %]
    [% item %]
[% END %]

我可以直接访问第0个,第1个,第2个等元素而不使用任何循环吗?

e.g。

`[% array[0] %]`

1 个答案:

答案 0 :(得分:4)

你可以这样做:

[% array.0 %]

如果索引在变量中:

[% array.$index %]

可以在www.template-toolkit.org/docs/manual/Variables.html#section_List_References找到文档。