我有一个actionListener来检测单击命令按钮的时间,然后我打算将一个布尔变量设置为true,并在另一个要执行的方法中对其进行求值;如果是真的,那么会加载一些项目;如果为假,则会加载另一个项目:
xhtml:
<h:form id="myFormID" ... >
<p:commandButton id="myButtonID" value="Some Title" action="#{myController.pressedFilter()}" actionListener="#{myController.checkClicked}" />
...
</h:form>
Controller类:
//the boolean variable:
private boolean clicked;
public boolean isClicked() {
return clicked;
}
public void setClicked(boolean clicked) {
this.clicked = clicked;
}
//the actionListener to detect the button clicked:
public boolean checkClicked(ActionEvent ev) {
String buttonClickedID = ev.getComponent().getClientId();
if (buttonClickedID.equals("myFormID:myButtonID")) {
setClicked(true);
}
return clicked;
}
//the method to retrieve the items:
public Collection<T> getItems() {
if (isClicked()) {
items = this.ejbFacade.findSomeItems();
} else if (!isClicked()) {
items = this.ejbFacade.findAnotherItems();
}
return items;
}
//clears all datatable filters:
public String pressedFilter() {
clearAllFilters();
return "/app/index";
}
不幸的是,我不知道为什么它没有按我预期的那样工作。
如果单击命令按钮,则布尔变量设置为true;但是在评估它时,我不知道为什么该值是错误的。
有人可以解释我做错了什么,并帮助我修复它以使其按照我的描述工作吗?
谢谢。
答案 0 :(得分:0)
如评论中提到的。问题在于您使用的是@ViewScoped
bean,该bean在每次视图更改时都会重新创建(例如,浏览器刷新)。签出:JSF Scopes。
因此,将您的bean作用域更改为@SessionScoped
可能会解决问题。