我正在使用JSF2和GlassFish,PrimeFaces 2.1。JSF PrimeFaces p:commandLink不會重定向到新頁面?
這工作,showCreateProfile()方法被擊中,並且該方法返回「profileForm」,瀏覽器重定向到該頁面:
<h:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" />
然而,這不起作用,showCreateProfile()方法來獲取點擊,並且該方法返回「profileForm」,但瀏覽器不會重定向到頁面。我嘗試了三件不同的事情,沒有運氣:
<p:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" />
<p:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" ajax="false" />
<p:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" ajax="false" immediate="true"/>
任何想法我做錯了什麼?
羅布