留言板

how to get HttpServletRequest or PortletRequest from cms template

thumbnail
Michel Wicky,修改在11 年前。

how to get HttpServletRequest or PortletRequest from cms template

Regular Member 帖子: 130 加入日期: 10-7-3 最近的帖子
Hi all, did somebody know how to get HttpServletRequest or PortletRequest from a velocity script in a web content template ?
Thx a lot.
thumbnail
Mika Koivisto,修改在11 年前。

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend 帖子: 1519 加入日期: 06-8-7 最近的帖子
You can't unfortunately get access to either one in web content template because they are rendered in the service backend. You need to find another approach to what you are trying to accomplish.
thumbnail
Michel Wicky,修改在11 年前。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 帖子: 130 加入日期: 10-7-3 最近的帖子
Ok i understand.

An another way is may be to use friendly URL like below:

#foreach ($userOrganization in $userOrganizations)
#if (!$userOrganization.isRoot() && $userOrganization.getParentOrganization().getGroupId() == 10698)
## debug $request.theme-display
## debug $getterUtil.getBoolean("false")
#set ($organizationFriendlyPath = $userOrganization.getGroup().getPathFriendlyURL($getterUtil.getBoolean("false"), $request.theme-display))
## debug $organizationFriendlyPath
#set ($organizationFriendlyURL = $userOrganization.getGroup().getFriendlyURL())
## debug $organizationFriendlyURL
#set ($OrganizationLink = "$organizationFriendlyPath$organizationFriendlyURL")
$OrganizationLink

<li><a href="${OrganizationLink}">$userOrganization.Name</a></li>

#end

Unfortunately, this statement don't execute correctly :
#set ($organizationFriendlyPath = $userOrganization.getGroup().getPathFriendlyURL($getterUtil.getBoolean("false"), $request.theme-display))

$request.theme-display seem not to be the right Type even I supposed it is RequestVars.getThemeDisplay, but may be it is not !?
thumbnail
jelmer kuperus,修改在11 年前。

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend 帖子: 1191 加入日期: 10-3-10 最近的帖子
You have access to an xml representation of the request. This xml document is available in the template as xmlRequest. It is documented on the wiki.

Note however that webcontent is usually cached and you'd have to disable caching in order to make use of this
thumbnail
Michel Wicky,修改在11 年前。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 帖子: 130 加入日期: 10-7-3 最近的帖子
Thanks Jelmer, I need HttpServletRequest or PortletRequest to use one of them in $Request in the statement below:
#set ($myPlaceURL = $portletFactoryUtil.create($Request, "49", $userOrganization.getGroup().getDefaultPublicPlid(), "ACTION_PHASE"))

The goal is just to list some organization from a velocity script web content template with a link to each organization.

I already have everything (user, organization, group), i just need this parameter to finish the job. If i can't have it I have to find an another way to achieve this like may the second example i posted.

Thanks for your recommandation ...
thumbnail
jelmer kuperus,修改在11 年前。

RE: how to get HttpServletRequest or PortletRequest from cms template

Liferay Legend 帖子: 1191 加入日期: 10-3-10 最近的帖子
You can't create links like that from a cms template because that would require access to the real request

You should pobably use javascript as i describe in this post
thumbnail
Michel Wicky,修改在11 年前。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 帖子: 130 加入日期: 10-7-3 最近的帖子
Thank you a lot Jelmer, finally an information that will orient me correctly. I understand why javascript is the way to get these informations.
Hope I will able to achieve this.
Thx again.
Balázs Csönge,修改在8 年前。

RE: how to get HttpServletRequest or PortletRequest from cms template

Regular Member 帖子: 107 加入日期: 14-11-10 最近的帖子
Hi,

Were you able to get the request object?
If yes can you publish the solution CODE?

Regards

Balázs