繁体   English   中英

如何使用 Primefaces 从一个 xhtml 页面连接到另一个页面中的数据

[英]How to conect from one xhtml page to data in another page with Primefaces

我正在将一些变量从 .xhtml 页面发送到一个控制器,该控制器将数据发送到另一个页面,该页面具有另一个处理该页面数据的控制器,我曾尝试使用 setter 和 getter。 问题是我真的不知道与@PostConstruct 有什么关系。

XHTML 文件

<h:form id="frmStart">
 <p:growl id="growl" sticky="true" showDetail="true" />
 <p:panel id="pnlDatos">
 <p:dataTable id="tblObjeto" var="object" 
              value="#{parentControlador.listObjects}" 
              widgetVar="tblObjeto"
              emptyMessage="No hay datos">
  <f:facet name="header">
                            Objetos     
  </f:facet>




<p:column headerText="Contar" width="20">
 <p:commandButton class="pi pi-list" id="openDialogContar" value="Ver"
                                             action="#{parentControlador.FindItems(object)}"
                                             />
</p:column>
</p:dataTable>
</p:panel>
</h:form>

ParentControlador 控制器代码

    @Inject Item item;

public String FindItems(ObjectParent objectParent) {
        String type="";
        String result="";
        //variable that i am going to send
                ItemControlador itemControlador = new ItemControlador();
                itemControlador.setCorte(objectParent);
        try {

       if(item.listarItemsA(objectParent.getCorte_id()).isEmpty()){
                    this.listaItems = item.listarItemsB(objectParent.getCorte_id());
                    type = "A";
                }else{
                    this.listaItems = item.listarItemA(objectParent.getCorte_id());
                    type = "B";
                } 
                this.objeto = objectParent;  

                result = type == "A"? "A.xhtml":"B.xhtml"; 
        } catch (Exception e) {
            FacesContext.getCurrentInstance().addMessage(null,
                    new FacesMessage(FacesMessage.SEVERITY_ERROR, "Error",
                            "The   objectParent doesnt have items "+e.getMessage()));
        }
        return result;
    }

这是处理“A.xhtml”、“B.xhtml”项目视图的控制器

     @PostConstruct
     private Parent parent;
    public void init() {
    //From what i see, thos is ejecuted when a .xhtml page is using the controller to retrieve the dataTable
    //
                if(item.listarItemsB(objectParent.getCorte_id()).isEmpty()){
                    this.listaObjetos = item.listarItemA(objectParent.getCorte_id());
                }else{
                    this.listaObjetos = item.listarItemsA(objectParent.getCorte_id());
                }

    }

    public Parent getCorte() {
        return corte;
    }

    public void setCorte(Parent parent) {
        this.parent = parent;
    }

我如何从处理一个控制器 X 的 xhtml 视图发送数据以查看数据,发送到另一个使用另一个控制器 Y 的 xhtml 页面,并在使用 Y 控制器的另一个页面中显示发送的数据的数据。

如果您需要在两个.xhtml视图之间共享一些数据,您可以将数据放在@SessionScoped控制器中,该控制器在同一浏览器会话中的两个视图之间具有相同的状态,并且对两个视图都可见。 只需从page1.xhtml提交您的数据到@SessionScoped控制器并从page2.xhtml访问它

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM