通过失去字段的焦点(id =“nome”)方法(listener =“#{loginMb.criticaCamposTela}”)被执行,但属性值(value =“#{loginMb.usuario.nome}” )在托管bean中未更新,值为null。 它不应该与验证的输入值一致吗?为什么是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(""));
}}
的web.xml:
<context-param>
<param-name>primefaces.SUBMIT</param-name>
<param-value>partial</param-value>
</context-param>
答案 0 :(得分:0)
尝试从immediate="true"
删除p:ajax
。您的ajax在applay请求阶段处理,这就是您的字段未初始化的原因。