2

我正在使用 Spring MVC 来处理 portlet 和 liferay 选项卡。我在标签标题中添加空格时遇到问题。假设我想在 JSP 中定义这样的东西:

<liferay-ui:tabs
names="Sample Tab 1, Sample Tab 2"
refresh="false"
value="${myControllerValue}" 
>
<liferay-ui:section>
     <jsp:include page='/jsp/myPage1.jsp' flush="true"/> 
</liferay-ui:section>
<liferay-ui:section>
    <jsp:include page='/jsp/myPage2.jsp' flush="true"/> 
</liferay-ui:section>
</liferay-ui:tabs>

这根本不起作用(尽管这正是文档中的示例),问题只是名称中的空格(如果我使用 names="tab1,tab2",它可以正常工作,但这不是我想要展示的在标签标题中)

此外,我需要控制从控制器显示的选项卡。像这样的东西:

 if(whatever){
 renderrequest.setAttribute("myControllerValue", "Sample Tab 1");
 }

这会导致另一个问题,因为我需要以多种语言显示选项卡名称,所以我需要以区域设置语言传递我想要的选项卡以匹配 jsp id。最好的办法是将标题与标签 ID 分开并使用 tabValues 参数,但不知道该怎么做......

我读了一些关于重新定义 Languages-ext.properties,但我只是导入选项卡,

<%@taglib prefix="liferay-ui"   uri="http://liferay.com/tld/ui" %>

所以我没有这个属性文件,也不知道如何解决它。

对于这个问题,我非常感谢任何形式的帮助。

提前致谢!

编辑:

尝试应用下面发布的答案,我遇到了下一个错误:

07:26:12,297 ERROR [PortletLocalServiceImpl:542] com.liferay.portal.kernel.xml.DocumentException: Error on line 20 of document  : cvc-complex-type.2.4.a: Invalid content was found starting with element 'resource-bundle'. One of '{"http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd":portlet-info, "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd":portlet-preferences, "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd":security-role-ref, "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd":supported-processing-event, "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd":supported-publishing-event, "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd":supported-public-render-parameter, "http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd":container-runtime-option}' is expected. 

这是我的 portlet.xml 文件:

<portlet-app
version="2.0"
xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd">
<portlet>
    <portlet-name>MyAPP</portlet-name>
    <display-name>MyAPP</display-name>
    <portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
    <init-param>
        <name>contextConfigLocation</name>
        <value>/WEB-INF/portlet/MyAPP-portlet.xml</value>
    </init-param>                       
    <expiration-cache>0</expiration-cache>
    <supports>
        <mime-type>text/html</mime-type>
        <portlet-mode>VIEW</portlet-mode>
    </supports>
    <supported-locale>gl_ES</supported-locale>
    <supported-locale>es_ES</supported-locale>
    <resource-bundle>messages</resource-bundle>

    <resource-bundle>content/Language</resource-bundle>  

    <portlet-info>
        <title>MyAPP</title>
        <short-title>MyAPP</short-title>
        <keywords>MyAPP</keywords>
    </portlet-info>
</portlet>
</portlet-app>
4

1 回答 1

3

您可以使用Language.properties在选项卡中具有所需的确切标题名称。

<liferay-ui:tabs>您可以拥有:

<liferay-ui:tabs
    names="sample-tab-1, sample-tab-2"
    refresh="false"
    value="${myControllerValue}" 
>

这只不过是Language.properties文件中的键:

sample-tab-1=Sample Tab 1
sample-tab-2=Sample Tab 2

您可以将Language.properties文件定义portlet.xml为:

<portlet>
    ...
    ...
    <resource-bundle>content/Language</resource-bundle>
    ...
</portlet>

此文件和其他语言文件将驻留在content文件夹内的源包中,如下所示:

docroot
  |
  |--> src
        |
        |--> content
                |--> Language.properties
                |--> Language_en.properties
                |--> Language_ja.properties
                |--> Language_de.properties
                     ...

因此,在您的控制器中,您将使用:

if(whatever){
   renderrequest.setAttribute("myControllerValue", "sample-tab-1");
}

有关Liferay 本地化的更多信息。

于 2013-05-15T14:24:33.387 回答