嘿,我整天都在苦苦挣扎,但我还找不到答案。所以我的问题是我的 xhtml 页面中有 2 个表单,第一个显示填充了来自我的数据库的数据的 primefaces 数据表,第二个填充了来自所选用户的数据以进行编辑。问题是,第二种形式有 2 个命令按钮,但是在我渲染它(通过 ajax 调用)之后,按钮似乎没有调用 action 属性中的方法。
这是我的代码,可以让一切更清楚。
这是我在 xhtml 页面中的第一个表单
<h:form id="form" style="width:710px;">
<p:dataTable id="dataTable" var="supervisor" value="#{tablaBean.modeloUsuario}"
paginator="true" rows="15" paginatorPosition="bottom" selection="#{tablaBean.usuarioSel}"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {NextPageLink} {LastPageLink}"
rendered="#{tablaBean.showAll}">
<f:facet name="header">
<h:outputText value="Supervisores" />
</f:facet>
<p:column selectionMode="single" style="width:18px" />
<p:column headerText="Id" filterBy="#{supervisor.idUsuario}" filterStyle="width:35px;">
<h:outputText value="#{supervisor.idUsuario}" />
</p:column>
<p:column headerText="Nombre" filterBy="#{supervisor.nombre}" id="nombreh">
<h:outputText value="#{supervisor.nombre}" />
</p:column>
<p:column headerText="Ap. Paterno" filterBy="#{supervisor.apaterno}" id="apat">
<h:outputText value="#{supervisor.apaterno}" />
</p:column>
<p:column headerText="Ap. Materno" filterBy="#{supervisor.amaterno}" id="amat">
<h:outputText value="#{supervisor.amaterno}" />
</p:column>
<p:column headerText="Usuario" filterBy="#{supervisor.nombreUsuario}" id="user">
<h:outputText value="#{supervisor.nombreUsuario}" />
</p:column>
<p:column headerText="Depto." filterBy="#{supervisor.departamento.nombre}" id="deptoh">
<h:outputText value="#{supervisor.departamento.nombre}" />
</p:column>
<f:facet name="footer">
<p:commandButton id="ver" value="Ver" icon="ui-icon-search" update=":form:userData" oncomplete="user.show()" />
<p:commandButton id="editar" value="Editar" icon="ui-icon-pencil" update=":form,:formEdit" action="#{tablaBean.edit()}" />
</f:facet>
</p:dataTable>
</h:form>
这是我的第二种形式的代码
<h:form id="formEdit">
<p:growl />
<p:fieldset legend="Editar Usuario" style="margin: auto;" rendered="#{!tablaBean.showAll}">
<h:panelGrid columns="3">
<h:outputText value="Id" />
<h:outputText value="#{tablaBean.usuarioSel.idUsuario}" id="id" />
<p:message for="id" />
<p:outputLabel for="nombre" value="Nombre" />
<p:inplace>
<p:inputText value="#{tablaBean.usuarioSel.nombre}" id="nombre" required="true" />
</p:inplace>
<p:message for="nombre" />
<p:outputLabel for="appat" value="Apellido Paterno" />
<p:inplace>
<p:inputText value="#{tablaBean.usuarioSel.apaterno}" id="appat" required="true"/>
</p:inplace>
<p:message for="appat" />
<p:outputLabel for="apmat" value="Apellido Materno" />
<p:inplace>
<p:inputText value="#{tablaBean.usuarioSel.amaterno}" id="apmat" required="true"/>
</p:inplace>
<p:message for="apmat" />
<p:outputLabel for="usuario" value="Usuario" />
<p:inplace>
<p:inputText value="#{tablaBean.usuarioSel.nombreUsuario}" id="usuario" required="true">
<f:ajax render="msgUsuario" event="blur" />
<f:validator binding="#{userNameValidator}" />
</p:inputText>
</p:inplace>
<p:message for="usuario" id="msgUsuario" />
<p:outputLabel for="depto" value="Departamento" />
<p:inplace>
<p:inputText value="#{tablaBean.usuarioSel.departamento.nombre}" id="depto" required="true" />
</p:inplace>
<p:message for="depto" />
</h:panelGrid>
<p:commandButton value="Guardar" icon="ui-icon-disk" action="#{tablaBean.editarUsuario()}" />
<p:commandButton id="editar" value="Cancelar" update=":form,:formEdit" icon="ui-icon-pencil" action="#{tablaBean.edit()}" />
</p:fieldset>
因此,当我调用方法“edit()”时,我会更改 showAll 变量的值,使其呈现第二种形式并“隐藏”第一种形式。问题是在我这样做之后,第二种形式的命令按钮什么也不做。(甚至不要输入方法)
这是我的豆子
@Named(value = "tablaBean")
@ConversationScoped
public class TablaBean implements Serializable {
@Inject
private UsuariosDao usuario;
@Inject
private Usuarios usuarioSel;
@Inject
private Conversation conversation;
private UserDataModel modeloUsuario;
private boolean showAll;
/**
* Creates a new instance of TablaBean
*/
public TablaBean() {
}
@PostConstruct
public void init() {
start();
modeloUsuario = new UserDataModel(usuario.findSupers());
showAll = true;
}
public void start(){
conversation.begin();
}
public void end(){
conversation.end();
}
public Usuarios getUsuarioSel() {
return usuarioSel;
}
public void setUsuarioSel(Usuarios usuarioSel) {
this.usuarioSel = usuarioSel;
}
public UserDataModel getModeloUsuario() {
return modeloUsuario;
}
public boolean isShowAll() {
return showAll;
}
public void setShowAll(boolean showAll) {
this.showAll = showAll;
}
public UsuariosDao getUsuario() {
return usuario;
}
public void setUsuario(UsuariosDao usuario) {
this.usuario = usuario;
}
public String edit() {
System.out.println("holis");
showAll = !showAll;
return "";
}
public String editarUsuario(){
System.out.println("hola");
end();
return "";
}
}
任何关于我可能做错的建议表示赞赏,在此先感谢。
编辑
我做了更多的调试,我发现每次我点击第一种形式的编辑按钮时都会调用我的托管 bean,所以我猜问题是我的对话 bean。
编辑 2
我将支持 bean 的范围更改为 Application,现在点击编辑按钮时它没有被调用,但命令按钮仍然不起作用