<ui:composition template="/WEB-INF/templates/base.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<ui:define name="metadata">
<f:metadata>
<f:event type="preRenderView" listener="#{resetPassword.loadUser}" />
<f:viewParam name="user" value="#{resetPassword.user}" />
</f:metadata>
</ui:define>
<ui:define name="content">
<h:form rendered="#{resetPassword.user != null}">
<h:panelGrid class="form_panel" columns="2" width="596px">
<h:outputLabel class="form_label" for="password" value="#{base['resetPassword.password']}" />
<h:inputSecret class="form_inputText" id="password" value="#{resetPassword.password}">
<f:ajax event="keyup" execute="password" listener="#{resetPassword.validatePassword}" render="scorePanel complexity" />
</h:inputSecret>
(...) // Other labels and inputfields, no ajax
</h:panelGrid>
</h:form>
</ui:define>
</ui:composition>
我已经阅读了与-callspreRenderView
结合使用的很多问题。ajax
我遇到的主要问题是问题。尽管postback
在我的情况下,ajax
使用preRenderView
. 如果没有整个f:event
-tag,我的ajax
-call 确实可以正常工作。
resetPassword.loadUser()
将设置resetPassword.user
,不为空。我需要使用preRenderView
代替@PostConstruct
来填充f:viewParam
. 提交表单时需要此参数。
为什么我的ajax
-event 在<f:event type="preRenderView" />
定义时会中断?
注意:<ui:insert name="metadata" />
位于模板里面<h:head>
。
更新
正如 BalusC 评论的那样,该问题在这部分代码中不可见。
public void loadUser(ComponentSystemEvent event) {
if(!FacesContext.getCurrentInstance().isPostback()) {
user = (hash != null) ? userService.getByIdAndPwdResetHash(userId, hash) : null;
}
}
此代码可能会返回null
但不会(因为正在加载我的表单)。
public void validatePassword(AjaxBehaviorEvent event) {
System.out.println("Ajax works"); // Just for testing purposes so far
}
我不知道要进一步添加什么,因为这几乎是所有相关代码。