JSF 动态包含使用 Ajax 请求

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/6219202/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-06 11:01:15  来源:igfitidea点击:

JSF dynamic include using Ajax request

ajaxdynamicincludejsf-2primefaces

提问by Bhesh Gurung

In JSF2, is it possible to change the of value of src of ui:include dynamically using Ajax request (like for example PrimeFaces p:commandButton)? Thank you.

在 JSF2 中,是否可以使用 Ajax 请求(例如 PrimeFaces p:commandButton)动态更改 ui:include 的 src 值?谢谢你。

<h:form>                        
    <h:commandLink value="Display 2" action="#{fTRNav.doNav()}">
        <f:setPropertyActionListener target="#{fTRNav.pageName}" value="/disp2.xhtml" />
    </h:commandLink>
</h:form>

<ui:include src="#{fTRNav.pageName}"></ui:include>

That's what I have right now. Is it possible to make it Ajax (using p:commandButton)?

这就是我现在所拥有的。是否可以使用 Ajax(使用 p:commandButton)?

采纳答案by BalusC

The JSTL tags as proposed in the other answer are not necessary and it is not nicely reuseable.

另一个答案中提出的 JSTL 标记不是必需的,并且不能很好地重用。

Here's a basic example using pure JSF (assuming that you runs Servlet 3.0 / EL 2.2, otherwise you indeed need to use <f:setPropertyActionListener>like as in your question):

这是一个使用纯 JSF 的基本示例(假设您运行 Servlet 3.0 / EL 2.2,否则您确实需要<f:setPropertyActionListener>像在您的问题中一样使用):

<h:form>
    <f:ajax render=":include">
        <h:commandLink value="page1" action="#{bean.setPage('page1')}" />
        <h:commandLink value="page2" action="#{bean.setPage('page2')}" />
        <h:commandLink value="page3" action="#{bean.setPage('page3')}" />
    </f:ajax>
</h:form>

<h:panelGroup id="include">
    <ui:include src="#{bean.page}.xhtml" />
</h:panelGroup>

with

private String page;

@PostConstruct
public void init() {
    this.page = "page1"; // Ensure that default is been set.
}

// Getter + setter.

回答by 4pie0

here is how I render subcontent dynamically using MnagedBean. First I set page in the center (that will be changed by menu triggers) with private String name="/main_pages/mainpage.xhtml", then each time submenu is clicked the HelloBean resets "name"and contents is updated by update=":content"- then new name is retrieved from Bean:

这是我如何使用 MnagedBean 动态呈现子内容。首先,我在中心设置页面(将通过菜单触发器更改)private String name="/main_pages/mainpage.xhtml",然后每次单击子菜单时,HelloBean 重置"name"并更新内容update=":content"- 然后从 Bean 中检索新名称:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:p="http://primefaces.org/ui">




        <h:head>
            <f:facet name="first">
                <meta content='text/html; charset=UTF-8' http-equiv="Content-Type"/>

            </f:facet>
        </h:head>

        <h:body>

            <p:layout fullPage="true">

                <p:layoutUnit position="north" size="150" resizable="true" closable="true" collapsible="true">
                    <h1>Madeline<br>shop</br></h1>
                </p:layoutUnit>

                <p:layoutUnit position="south" size="100" closable="true" collapsible="true">
                    Zapraszamy do odwiedzania naszego biura!
                </p:layoutUnit>

                <p:layoutUnit position="west" size="175" header="Menu" collapsible="true">
                    <h:form>
                    <p:menu>
                            <f:ajax render=":content">
                            <p:menuitem value="O naszej agencji" action="#{helloBean.setName('/main_pages/onas.xhtml')}" update=":content" />
                            <p:menuitem value="Ubezpieczenia pojazdów" action="#{helloBean.setName('/main_pages/ubpoj.xhtml')}" update=":content" />
                            <p:menuitem value="Ubezpieczenia maj?tkowe" action="#{helloBean.setName('/main_pages/ubmaj.xhtml')}" update=":content" />
                            <p:menuitem value="Ubezpieczenia na ?ycie" action="#{helloBean.setName('/main_pages/ubnaz.xhtml')}" update=":content" />
                            <p:menuitem value="Zapytaj" action="#{helloBean.setName('/main_pages/zapytaj.xhtml')}" update=":content" />
                            <p:menuitem value="Kontakt" action="#{helloBean.setName('/main_pages/kontakt.xhtml')}" update=":content" />
                            </f:ajax>
                    </p:menu>
                    </h:form>
                </p:layoutUnit>

                <p:layoutUnit position="center">

                    <br></br><br></br>
                    <p:panel id="content">
                                        <ui:include src="#{helloBean.name}" />
                    </p:panel>       

                </p:layoutUnit>

            </p:layout>

        </h:body>



</html>

my ManagedBean:

我的 ManagedBean:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import java.io.Serializable;
/**
 *
 * @author root
 */
@ManagedBean
@RequestScoped
public class HelloBean implements Serializable {

    /**
     * Creates a new instance of HelloBean
     */
    private static final long serialVersionUID = 1L;

    private String name="/main_pages/mainpage.xhtml";

    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}

回答by aseychell

You need to use the <c:if test="condition">tag around the ui:include and then when the ajax button is clicked, the panel that holds the ui:include is refreshed.

您需要使用<c:if test="condition">ui:include 周围的标记,然后当单击 ajax 按钮时,包含 ui:include 的面板会刷新。

Example:

示例

First make sure that the jstl core taglib is included by inserting the following namespace in the document:

首先通过在文档中插入以下命名空间来确保包含 jstl 核心标签库:

<html xmlns:c="http://java.sun.com/jsp/jstl/core>"

<html xmlns:c="http://java.sun.com/jsp/jstl/core>"

Then, you can use the <c:if>tag as follows :

然后,您可以<c:if>按如下方式使用标签:

<c:if test="#{!logBean.loggedIn}">
    <ui:include src="loginpage.xhtml" />
</c:if>
<c:if test="#{logBean.loggedIn}">
    <ui:include src="home.xhtml" />
</c:if>