0

通过失去焦点字段 (id="nome") 方法 (listener="#{loginMb.criticaCamposTela}") 被执行,但属性值 (value="#{loginMb.usuario.nome}") 没有被执行在托管 bean 中更新,值为 null。它不应该与输入的值一起验证吗?为什么为空?

按照代码。

页:

<h:outputText value="Nome:" />
<p:inputText id="nome" value="#{loginMb.usuario.nome}"
    required="true" size="20" requiredMessage="Informação do nome é obrigatório.">
<p:ajax event="blur" update="idMsgNome, nome" partialSubmit="treu" process="@this"  
    immediate="true" listener="#{loginMb.criticaCamposTela}"></p:ajax>
</p:inputText>
<h:outputText id="idMsgNome" value="#{loginMb.criticaNome.value}" />

ManagedBean LoginMb:

public void criticaCamposTela(AjaxBehaviorEvent actionEvent) {
 String idComponenteTela = actionEvent.getComponent().getId();

if (idComponenteTela.equals("nome")) {

if ((this.usuario.getNome() == null)
  || ((this.usuario.getNome() != null) && (this.usuario
  .getNome().trim().length() == 0))) {

    this.criticaNome.setValue(new String(
       "O nome é um campo obrigatório."));
} else {
   this.criticaNome.setValue(new String(""));
}}

网页.xml:

<context-param>
<param-name>primefaces.SUBMIT</param-name>
<param-value>partial</param-value>
</context-param>
4

1 回答 1

0

尝试immediate="true"p:ajax. 您的 ajax 在应用请求阶段处理,这就是您的字段未初始化的原因。

于 2013-01-20T19:43:42.190 回答