在使用 JSF 2(Glassfish 3.1.1 上的 mojarra)进行的一些测试中,我遇到了我无法解释的奇怪行为。
这是我的托管 bean:
@ManagedBean
@RequestScoped
public class TestBean {
private int id;
public void hideButton() {
id = 0;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
这是我的 xhtml 页面
<h:form> <h:inputHidden value="#{testBean.id}"/> <h:outputText value="#{testBean.id}"/> <h:commandButton value="set 1" actionListener="#{testBean.setId(1)}"> </h:commandButton> <h:commandButton value="hide button" action="#{testBean.hideButton}" rendered="#{testBean.id > 0}"> </h:commandButton> </h:form>
我预计,“隐藏按钮”按钮在页面初始加载时不可见,这确实是事实。单击“set 1”按钮后,会出现“隐藏按钮”按钮,这也是意料之中的。对我来说真的无法理解的是,随后单击“隐藏按钮”按钮并没有调用 testBean.hideButton 方法并将 id 设置为 0。我已经阅读了 BalusC 的非常有用的答案(非常感谢)这里
未调用 commandButton/commandLink/ajax 操作/侦听器方法或未更新输入值
并认识到,问题与“渲染”属性有关,如果我将其删除,则会调用该操作。但据我所知,必须在 UPDATE MODEL VALUES 阶段初始化类成员,并且在 INVOKE APPLICATION 阶段应将呈现的属性中提到的条件评估为 true 并调用操作。
如果我将 bean 的范围更改为 View/Session,则该示例有效。但如果我从“隐藏按钮”中删除渲染属性,它也可以正常工作
有人会解释这种行为吗?
换句话说,在什么阶段对渲染属性的表达式进行评估以决定不调用该操作?