Liferay 如何在velocity自定义web内容模板中传递Url参数

Liferay 如何在velocity自定义web内容模板中传递Url参数,liferay,velocity,Liferay,Velocity,我在门户中创建一个指向其他页面的url,并在其中传递一个参数,我想在其他页面的velocity模板中获取该参数,我所做的是 #set($recordingLinks = []) #if(!$Event_Recordings.getSiblings().isEmpty()) #foreach ($cur_Event_Recordings in $Event_Recordings.getSiblings()) #set($result = $recordingLinks.add($cur_Event

我在门户中创建一个指向其他页面的url,并在其中传递一个参数,我想在其他页面的velocity模板中获取该参数,我所做的是

#set($recordingLinks = [])
#if(!$Event_Recordings.getSiblings().isEmpty())
#foreach ($cur_Event_Recordings in $Event_Recordings.getSiblings())
#set($result = $recordingLinks.add($cur_Event_Recordings.getData()))
#end
#end

如何获取“录制链接” 在下一页,我将在assetpublisher模板中使用#set($links=$request.getParameter(“recordingLinks”)),但没有成功

#set($links = $request.getParameter("recordingLinks"))