在Liferay结构/模板中使用外部链接

时间:2015-09-22 06:49:10

标签: liferay liferay-6.2

目前我在Liferay 6.2中开发了一个结构/模板组合,我发现了一个问题。

在我的结构中,用户可以输入外部网站的网址(" www.google.com"例如):

<dynamic-element dataType="string" indexType="keyword" localizable="true" name="website" readOnly="false" repeatable="false" required="false" showLabel="true" type="text" width="small">
        <meta-data locale="de_DE">
            <entry name="label">
                <![CDATA[Website (www.)]]>
            </entry>
            <entry name="predefinedValue">
                <![CDATA[]]>
            </entry>
            <entry name="tip">
                <![CDATA[]]>
            </entry>
        </meta-data>
    </dynamic-element>

在我的模板中,我希望链接到该页面,但当前代码只是将结构的字符串值附加到我的站点的BaseURL。像www.company-url.de/web/www.google.de

这样的东西
<a href="${website.getData()}">More information</a>

(我无法提供正确的网址,因为我不确定是否允许这样做)

有没有办法告诉Liferay将String用作独立的URL,而不是附加它?

非常感谢你的帮助。

2 个答案:

答案 0 :(得分:0)

检查${website.getData()}是否包含&#34;:&#34;,如果不是自己预先添加:

<#assign myURL = website.getData()>

<#if !website.getData()?matches(".*:.*")>
    <#assign myURL = "http://" + myURL>
</#if>

<a href="${myURL}">More information</a>

但是,这绝对不足以验证网址...

答案 1 :(得分:-1)

问题是你正在使用方法“.getData()”,正如你所说它只是一个字符串。请尝试使用“.getText()”代替:

<a href="${website.getText()}">More information</a>

希望它有所帮助,让我知道它是否有效:)