0

我有一个嵌入主题的 portlet。我发现允许主题从 portlet 获取参数值的唯一解决方案是使用中间数据库。我所做的是我在 portlet 中创建了一个表,然后我尝试从主题访问这个表:

Portlet 中的 Java 代码:

ExpandoTable table=null;
        try {
            table = ExpandoTableLocalServiceUtil.addTable(CompanyLocalServiceUtil.getCompanies().get(0).getCompanyId(), User.class.getName(), "ClientTab");
        }
        catch (  DuplicateTableNameException dtne) {
            table=ExpandoTableLocalServiceUtil.getTable(CompanyLocalServiceUtil.getCompanies().get(0).getCompanyId(), User.class.getName(), "ClientTab");
        }

主题中的速度代码:

#set ($accountsTableName = "ClientTab")

#set ($accountsTable = $expandoTableLocalService.getTable($accountsTableName, $accountsTableName))

#if (!$accountsTable)
 <h2> The table ClientTab doesn't exist </h2>
#else
 <h2> Well The table ClientTab exists </h2>
#end

但我得到的结果是:

表 ClientTab 不存在

我使用这些参考来开发我的代码:

http://myjavaexp.blogspot.com/2013/01/liferay-expando-services.html

http://www.programcreek.com/java-api-examples/index.php?api=com.liferay.portlet.expando.DuplicateColumnNameException

http://www.liferay.com/fr/web/raymond.auge/blog/-/blogs/715049

4

1 回答 1

0

如果您只想将值从您的 portlet 传递给主题,您可以在您的渲染方法中添加新的 Velocity 变量,如下所示:

HttpServletRequest httpRequest = PortalUtil.getHttpServletRequest(request);
Map<String, Object> velocityVariables = (Map<String, Object>)httpRequest.getAttribute(WebKeys.VM_VARIABLES);
if(velocityVariables == null) {
    velocityVariables = new HashMap<String, Object>();
}

velocityVariables.put("mySpecialKey", "mySpecialValue");
request.setAttribute(WebKeys.VM_VARIABLES, velocityVariables);

然后你可以在你的主题中使用这个变量,如下所示:

<h1>Here's the value added by my portlet --> $mySpecialKey</h1>

不要忘记$变量前面的字符。

于 2015-01-08T20:00:41.520 回答