2014-02-05 111 views
0

我需要將我的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> 
+0

您能否提供一些更詳細的信息,例如destination.xhtml和index.xhtml上的代碼? – Euan

回答

0

底座上的推薦人的更換邏輯(用戶來自頁)。在JavaScript中你得到像這樣

var ref = document.referrer 

瞭解更多信息

+0

當然,我在主要職位上去了。謝謝。 – user3276367

0

見​​3210我固定只需設置管理Bean的用戶登錄爲空,然後當我從我的邏輯豆回報指數的問題,該值只是空值,所以它看起來重置,但它只是該值,所有的管理Bean對象保持與以前一樣,直到您開始另一個搜索。

謝謝大家。

MBean userVO = (MBean) ve.getValue(context); 


    // Reset login used 
    userVO.setUser_login(null);   

    return "index"; 
相關問題