Liferay freemarker列表标签 - Velocity对应物

时间:2016-10-21 07:49:46

标签: liferay liferay-6 velocity freemarker

在我的Liferay 6.2 EE Webcontent模板中,我有以下freemarker代码:

<#list teaserHeader.getSiblings() as teaser_header>
    <#if getterUtil.getBoolean(teaser_header.teaserVisible.getData())>
        <h2 class="section-headline">${teaserHeader.getData()?html}</h2>
            <div class="inner-15">
                <div class="general-wrapper inner-15-content bound" >
                    <#if teaser_header.teaserImage.getData() != "">
                    <div class="product-image-wrapper left">
                        <img src="${teaser_header.teaserImage.getData()}" width="" height=""/>
                    </div>
                    </#if>
                    <div class="product-teaser-info left">${teaser_header.teaserContent.getData()}</div>
                    <div class="clearfix"></div>
                </div>
            </div>
    </#if>
</#list>

不幸的是我们必须切换到Velocity。

将自由标记列表标记转换为Velocity的最佳方法是什么?

我已经采用了其他所有内容(如果是标签,方法调用,......)

但是我对list标签有些麻烦。

我试图在Velocity中使用foreach但是我失败了......

由于

1 个答案:

答案 0 :(得分:1)

在速度方面它看起来应该是这样的:

#if (!$teaserHeader.getSiblings().isEmpty())
    #foreach ($teaser_header in $teaserHeader.getSiblings())
        ...
    #end
#end