我需要將我的destination.xhtml重定向到我的index.xhtml,並在最後一頁中對inputText進行重置。重定向並從一個html頁面重置爲另一個
的問題是,我需要的inputText不要當我通常刷新我的索引,只是在
謝謝大家這是從我的destination.xhtml重定向的情況下自動復位。
我來自:
<h:body>
<f:view>
<h:form>
<h:outputLabel value="UserID: "/><h:outputText value="#{userMBean.user_login}"/>
<h:outputLabel value="Activation code: "/><h:outputText id="act_code" value="#{userMBean.act_code}" style="color:red"/><br></br>
<h:message for="act_code"/>
<h:commandButton action="index" value="Back"/>
</h:form>
</f:view>
</h:body>
而且在我的索引我有:
<h:form>
<h:inputText required="true" value="#{userMBean.user_login}">
<f:validator validatorId="tencko.model.EmailValidator"/>
</h:inputText>
<h:commandButton action="#{logicBean.lookingfor()}" value="Search"/>
</h:form>
您能否提供一些更詳細的信息,例如destination.xhtml和index.xhtml上的代碼? – Euan