0

I have a faces-config.xml that contains a lot of navigation rules but I'm not able to get a redirect-param in my page.

I've searched a lot about this issue but I couldn't find any helping response.

detail.xhtml:

<p:commandLink action="#{bean.delete()}">
    <f:setPropertyActionListener target="#{bean.deletionSuccess}" value="true" />
    <p:confirm header="Confirmation" message="Are you sure?"
</p:commandLink>

faces-config.xml:

<navigation-rule>
    <from-view-id>/myDetailPage.xhtml</from-view-id>
    <navigation-case>
        <from-outcome>deletionSuccess</from-outcome>
        <to-view-id>/myOverviewPage.xhtml</to-view-id>
        <redirect/>
    </navigation-case>
</navigation-rule>

Java-Bean:

   private String deletionSuccess;

    public String delete() {
        // do something
        return "deletionSuccess";
    }
    public void setDeletionSuccess(String deletionSuccess) { this.deletionSuccess = deletionSuccess; }

    public String getDeletionSuccess() { return deletionSuccess; }

overview.xhtml:

<f:metadata>
    <f:viewParam name="deletionSuccess" value="#{bean.deletionSuccess}"/>
    <f:viewAction action="#{bean.init}"/>
</f:metadata>
...
<h:form id="mainform" class="form-horizontal overview" role="form" method="post">
    <h:panelGroup styleClass="row" rendered="#{!empty housePlantBean.deletionSuccess}">
...

What am I doing wrong? Or how can I get the redirect-param in my XHTML-page?

Thanks a lot for your help!

4

1 回答 1

1

这不会以这种方式工作。

首先,您需要<f:viewParam>myOverviewPage.xhtmlfacelet 上定义,例如:

<f:metadata>
    <f:viewParam name="deletionSuccess" value="#{bean.deletionSuccess}"/>
</f:metadata>

我想你已经定义了它。


传递参数的简单方法是使用<h:button><h:link>myDetailPage.xhtmlfacelet 上,例如:

<h:button outcome="deletionSuccess">
    <f:param name="deletionSuccess" value="#{true}"/>
</h:button>

但没有调用public String delete()方法。

因此,如果您想重定向和调用此方法,您应该使用<h:commandButton>or <h:commandLink>,例如:

<h:commandButton value="submit" action="#{bean.delete}">
    <f:setPropertyActionListener target="#{bean.deletionSuccess}" value="#{true}" />
</h:commandButton>

--- 更新
请在导航规则中保留正确的文件名

<navigation-rule>
    <from-view-id>/detail.xhtml</from-view-id>
    <navigation-case>
        <from-outcome>deletionSuccess</from-outcome>
        <to-view-id>/overview.xhtml</to-view-id>
        <redirect include-view-params="true"/>
    </navigation-case>
</navigation-rule>

请添加到detail.xhtml

<p:confirmDialog global="true" showEffect="fade" >
   <p:commandButton value="Yes" type="button" styleClass="ui-confirmdialog-yes" icon="ui-icon-check"/>
   <p:commandButton value="No" type="button" styleClass="ui-confirmdialog-no" icon="ui-icon-close"/>
</p:confirmDialog>

<p:confirm header="Confirmation" message="Are you sure?"/><p:commandLink>标签中删除

于 2014-04-25T16:40:27.173 回答