如何在特定的Liferay页面上找到添加的portlet?
例如:
我有三个页面:欢迎, Wiki 和搜索。
现在所有这些页面都添加了portlet,其中一些是可实例化的portlet(如web-content display和iframe portlet)。
现在我想以请求参数的形式将一些信息传递给iframe-portlet
Search page
上的Welcome page
。
答案 0 :(得分:20)
我找到了两种方法:
如果要在添加portlet的同一页面上找到portlet,可以使用portlet或JSP可用的themeDisplay
对象:
// In JSP
List<String> portletIdList = themeDisplay.getLayoutTypePortlet().getPortletIds();
// In portlet class
ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY);
List<String> portletIdList = themeDisplay.getLayoutTypePortlet().getPortletIds();
如果你想在某个不同的页面上找到portlet,那么你应该知道三件事,即: friendly-url
,groupId
以及此网页是否为网站(或社区)的public-page
或private-page
,以下是代码:
// 101543 is the SiteId, if it is a public-page then "false" and "/search" is the friendlyURL
LayoutTypePortlet layoutTypePortlet = LayoutTypePortletFactoryUtil.create(LayoutLocalServiceUtil.getFriendlyURLLayout(101543, false, "/search"));
List<String> portletIdList = layoutTypePortlet.getPortletIds();
portletIdList
包含portletIds及其instanceIds。现在,从列表中,您只需使用iframe-portlet
过滤掉/search
页面上的com.liferay.portal.util.PortletKeys.IFRAME
即可,您将获得类似48_INSTANCE_rPv9
的内容。