2

我正在尝试为 <portlet:resourceURL/> 的参数赋值

<portlet:resourceURL id="<%=Constants.Color%>" var="<%=Constants.Color%>"/>

此代码不起作用。

public class Constants {
    public static final String Color = "Red";
}
4

1 回答 1

5

为了使用 jsp 中的 resourceURL 传递参数,您将执行类似...

      <portlet:resourceURL var="varname" escapeXml="false">
        <portlet:param name="paramName" value="paramVal" />
      </portlet:resourceURL>

在您的 portlet 中

      request.getParameter("paramName");    
于 2012-09-17T10:59:14.753 回答