如何获得可重复文本字段之一 liferay7 Freemarker

How to get one of repeatable text field liferay7 Freemarker

我创建了一个 Web 内容 Dsiplay文本作为结构中的可重复字段 ) . 在结构模板中,我希望 只有第三个元素

我试过了

${Text.getSiblings()[3].getData()}

但是不行

我正在使用 Liferay-7Freemarker作为结构模板

谢谢

索引字段以 0 开头,因此 3rd 元素的解决方案是:

${Text.getSiblings()[2].getData()}