我有一个简单的 3line jsf 页面和一个支持 bean。我在我的页面中使用命令按钮。Onclick 事件我正在调用 ajax。其中 ajax 方法将输出文本组件添加到子项。现在问题来了。输出文本组件在页面加载时呈现,而不是在点击页面时呈现。
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
<h:form>
<h:commandButton id="button1" action="return false" value="Submit">
<f:ajax execute="#{bb.method1()}" render="@form" transient="true" event="click" />
</h:commandButton>
</h:form>
</h:body>
</html>
支持 bean 代码
@Named("bb")
@SessionScoped
public class BackingBean implements Serializable {
public BackingBean() {
}
public void method1()
{
HtmlOutputText out=new HtmlOutputText();
out.setValue("Text1");
FacesContext context=FacesContext.getCurrentInstance();
context.getViewRoot().getChildren().add(out);
context.getViewRoot().setTransient(true);
}
}
单击按钮 firebug show status 200 OK .. 但我在页面上看不到任何变化