我们是否总是需要向 URL 传递参数来检索它们?
在我的示例中,我无法检索名为“study”的参数;我该怎么做?
XHTML 文件发送器:
<h:commandButton value="Send" type="button" action="pretty:participant">
<f:param name="study" value ="test" />
</h:commandButton>
XHTML 文件接收器:
<h:outputFormat value="Print : {0} ">
<f:param value="#{study}" />
</h:outputFormat>
漂亮的配置 XML:
<url-mapping id="participant">
<pattern value="/Participant/New/" />
<view-id value="/addParticipant.xhtml" />
</url-mapping>