1

我有个问题。我有一个表单,其中包含要发送到 bean 的输入,该东西已被调试,在 bean 对象中始终为空。你能帮我解决这个问题吗?

这里的代码:

<h:form id="frmNuevo">
      <p:dialog id="dialog" header="Añadir Presupuesto" widgetVar="dialogNuevo" resizable="true" width="500" height="500" showEffect="fade" hideEffect="explode" modal="true">
        <p:growl id="growl" showDetail="true" sticky="true" />
        <h:panelGrid id="display" columns="2" cellpadding="4" style="margin: 0 auto;">
            <h:outputText value="Diciembre:" />
            <p:inputText value="#{presupuestoBean.presupuesto.diciembre}" required="true"                 maxlength="20" />
            <p:commandButton value="Guardar" update=":form:cars, frmNuevo, growl, display" process="@this" actionListener="#{presupuestoBean.insertar}" oncomplete="dialogNuevo.hide()" image="icon-save" />
            <p:commandButton value="Cancelar" update=":form:cars" oncomplete="dialogNuevo.hide()" style="margin-bottom: 20px;" image="icon-cancel" />
        </h:panelGrid>
        <p:separator/></p:dialog>
</h:form>

我用 SessionScoped 和 RequestScoped 进行了测试,但不起作用,奇怪的是我做过其他类似的 bean,如果它们工作 ManagedBean:

import java.io.Serializable;

import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;

@ManagedBean(name = "presupuestoBean")
@RequestScoped
public class PresupuestoBean implements Serializable {

    private TbPresupuesto presupuesto;
    private List<TbPresupuesto> presupuestos;
    private UploadedFile file;
    private String destination = "C:\\temp\\";

    public PresupuestoBean() {
        presupuesto = new TbPresupuesto();
        presupuestos = new ArrayList();
    }

    public TbPresupuesto getPresupuesto() {
        return presupuesto;
    }

    public void setPresupuesto(TbPresupuesto presupuesto) {
        this.presupuesto = presupuesto;
    }


    public void prepararInsertar() {
        presupuesto = new TbPresupuesto();
        presupuestos = new ArrayList();
    }

    public void insertar() {
        PresupuestoDaoImpl presupuestoDao = new PresupuestoDaoImpl();
        presupuesto.setPresupuestoId(presupuesto.getLinea().getLineaId());
        presupuestoDao.insertar(presupuesto);
        FacesContext context = FacesContext.getCurrentInstance();
        context.addMessage(null, new FacesMessage("Se ha ingresado correctamente"));
        presupuesto = new TbPresupuesto();
    }

}
4

1 回答 1

4

表单必须进入对话框。

<p:dialog>
    <h:form>
        ...
    </h:form>
</p:dialog>

生成的对话框组件的 HTML 表示是在页面加载期间通过 JavaScript 重新定位到末尾,<body>以提高呈现模态对话框的跨浏览器兼容性。

使用您当前的代码,这意味着对话框将不再位于表单中。因此,当您尝试在对话框中提交输入值时,它们最终会变为空值,因为没有表单可以收集输入值并将其发送到服务器。

此外,您只处理命令按钮内的提交按钮。

<p:commandButton ... process="@this" />

删除该属性。它默认为@form已经,这正是您想要的。

于 2013-04-25T00:46:08.787 回答