我正在使用liferay6。我在liferay中部署了我的Web应用程序。登录后,它重定向到一个页面。在那个jsp页面中,我想在javascript变量中设置登录用户的组织ID。我该怎么做。可以任何人请解释。
问问题
1559 次
2 回答
3
- 您可以通过以下方式获取
userId
登录用户themeDisplay.getUserId()
- 使用它
userId
,您可以通过以下方式获取用户的组织OrganizationLocalServiceUtil.getUserOrganizations(userId)
- 然后,您可以遍历 Organizations 以获取您需要的 organizationId。
于 2013-06-12T08:10:10.303 回答
0
com.liferay.portal.model.Group currentGroup;
long organizationId = 0;
try {
currentGroup = themeDisplay.getLayout().getGroup();
if (currentGroup.isOrganization()) {
organizationId = currentGroup.getClassPK();
}
} catch (Exception e) {
log.error(e);
}
return organizationId;
于 2015-06-15T11:22:10.250 回答