以编程方式添加Ajax行为 - “Mojarra未定义”

时间:2013-11-13 15:44:26

标签: ajax jsf jsf-2

我有一个使用动态表单的页面,我以编程方式创建组件树(在这个问题中没有讨论)我需要渲染的一些输入控件需要一个ajax处理程序。

xhtml片段(由<ui:include>包含在另一个片段中)是:

<ui:composition xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://xmlns.jcp.org/jsf/passthrough">

    <h:panelGroup id="id_Group1" binding="#{questionaire.group1}" layout="block"/>

</ui:composition>

基于其他SO anwsers,我有以下bean代码:

   public HtmlPanelGroup getGroup1() {

        // irrelevant code omitted

        HtmlSelectOneRadio selectUI = new HtmlSelectOneRadio();
        AjaxBehavior valueChangeAction = (AjaxBehavior)FacesUtils.getApplication().createBehavior(AjaxBehavior.BEHAVIOR_ID);

        valueChangeAction.addAjaxBehaviorListener(new ProbeQuestionListener(currentQuestion, "probeDiv" + questionNumber));


        selectUI.addClientBehavior("change", valueChangeAction);
        valueChangeAction.setRender(Collections.singletonList("probeDiv" + questionNumber));

       // further code to customise the control, create the panel group and probe div and wire everything together omitted
    }

这正确呈现,我看到了:

<input type="radio" onchange="mojarra.ab(this,event,'change',0,'probeDiv2')" value="0" id="answer_1:0" name="answer_1">

但是,单击单选按钮会给我一个javascript控制台错误:reference error: mojarra is not defined

现在,如果我修改xhtml以包含“普通”ajax控件,例如

<ui:composition xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://xmlns.jcp.org/jsf/passthrough">

    <h:panelGroup id="id_Group1" binding="#{questionaire.group1}" layout="block"/>

    <!-- include a hacky hidden ajax field to force inclusion of the ajax javascript -->
    <h:panelGroup layout="block" id="hiddenAjaxDiv" style="display:none">
        <h:inputText id="hiddenAjax">
            <f:ajax execute="hiddenAjax" render="hiddenAjaxDiv" />
        </h:inputText>
    </h:panelGroup>    

</ui:composition>

此工作和firebug网络监视器显示我的单选按钮上的ajax事件已发布到应用程序。

所以,最后,我的问题:

我如何以编程方式强制包含ajax javascript库并免除我目前正在使用的可怕黑客攻击?

注意:我对任何以“不使用动态生成的组件”开头的答案不感兴趣 - 由于多种原因,这不是一个选项。

1 个答案:

答案 0 :(得分:9)

基本上,你需要这个:

<h:outputScript library="javax.faces" name="jsf.js" target="head" />

该脚本在包含JSF ajax脚本的标准mojarra命名空间中包含jsf定义。

如果需要,您可以通过<h:head> / <ui:define>在主模板的<ui:include>中明确声明。如果视图已经隐式要求,它将不会加载jsf.js文件的重复副本。

您甚至可以通过编程方式创建它:

UIComponent jsfjs = new UIOutput();
jsfjs.getAttributes().put("library", "javax.faces");
jsfjs.getAttributes().put("name", "jsf.js");
jsfjs.setRendererType("javax.faces.resource.Script");
FacesContext context = FacesContext.getCurrentInstance();
context.getViewRoot().addComponentResource(context, jsfjs, "head");

此处,如果视图已隐式要求,它将不会加载jsf.js文件的重复副本。


对于具体问题

无关,当您需要以编程方式填充组件树时,您应该优先于<f:event type="postAddToView">而不是binding

<h:panelGroup id="id_Group1" layout="block">
    <f:event type="postAddToView" listener="#{questionaire.populateGroup1}" />
</h:panelGroup>

public void populateGroup1(ComponentSystemEvent event) {
    HtmlPanelGorup group1 = (HtmlPanelGroup) event.getComponent();
    // ...
}

这可以保证树在恰当的时刻填充,并保持getter没有业务逻辑,并且当#{questionaire}在比请求范围更广的范围内时避免潜在的“重复组件ID”问题,并且保持bean没有UIComponent属性,这反过来避免了当组件被保存为可序列化bean的属性时潜在的序列化问题和内存泄漏。