gpt4 book ai didi

jsf - 如何在我的托管 bean 中识别单击的 commandButton

转载 作者:行者123 更新时间:2023-12-01 01:24:16 25 4
gpt4 key购买 nike

我的托管 bean 中有一个 actionListener 方法,许多命令按钮都会调用它。

public void verifyTestDisponibility(ActionEvent actionEvent) {
if (button1 clicked) {
// ...
}
if (button2 clicked) {
// ...
}
}

我坚持的部分是识别单击的命令按钮。我怎样才能识别它?

最佳答案

你可以这样使用它

在 xhtml 页面中我们可以使用 <h:commandButton>带有 actionListener 的标签

<h:commandButton id="btn1" action="#{yourBean.method}" value="ButtonValue"
actionListener="#{yourBean.commandClicked}"></h:commandButton>

在你的托管 bean 中

private String buttonId;
/* getters and setters for buttonId goes here */

public void commandClicked(ActionEvent event) {
/* retrieve buttonId which you clicked */
buttonId = event.getComponent().getId();

/*check for which button you clicked*/
if(buttonId.equals("btn1")){

}else{

}
}

关于jsf - 如何在我的托管 bean 中识别单击的 commandButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12797539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com