0

我有一个简单的 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 .. 但我在页面上看不到任何变化

4

1 回答 1

2

execute属性应该引用一个空格分隔的输入组件的客户端 ID 集合,这些输入组件需要在 ajax 提交期间进行处理。当视图被渲染并且绑定到它的任何方法因此被立即调用时,会评估此属性。

您应该改用该listener属性。

<f:ajax listener="#{bb.method1()}" render="@form" transient="true" event="click" />

render属性也是如此。

也可以看看:

于 2012-06-24T11:45:45.187 回答