jsf:将参数传递给支持bean中的方法

时间:2014-06-19 21:09:52

标签: java jsf richfaces

我需要将#{bean.userProfile}这样的参数传递给支持bean中的clear(UserProfile profile)之类的方法。

<a4j:commandButton  value="Cancel" onclick="#{rich:component('id_up')}.hide()"  execute="@this" type="reset" action="#{profilesBean.clear()}" render="id_panel">

我正在寻找在动作中编写类似内容的语法:

 action="#{profilesBean.clear(#profilesBean.selectedProfile)}"

我需要通过“selectedProfile”发送所有userProfile属性。

3 个答案:

答案 0 :(得分:1)

如果您使用EL2.2,那么您可以使用与预期非常相似的语法(应删除第二个#):

action="#{profilesBean.clear(profilesBean.selectedProfile)}"

答案 1 :(得分:0)

有几种方法可以将参数从jsf页面传递给backingBean,我通常会这样使用:

<h:commandButton action="#{profilesBean.clear}" >
    <f:setPropertyActionListener target="#{profilesBean.selectedProfile}" value="#{profilesBean.userProfile}" />
</h:commandButton>

您可以在mkyong site

中找到其他方式

答案 2 :(得分:0)

我更喜欢

<h:commandButton action="#{profilesBean.clear}">
    <f:param name="selectedProfile" value="selectedProfile" />
</h:commandButton>

和相应的bean

 public String clear() {

  Map<String,String> params = 
            FacesContext.getExternalContext().getRequestParameterMap();
  String action = params.get("selectedProfile");
      //...

}