0

我想使用导航规则从一个网页导航到另一个网页并获取 facesmessage :

No navigation case match for viewId /content/diagram.xhtml,  action null and outcome edit_weekedit

我的面孔配置看起来像:

<navigation-rule>
        <from-view-id>/content/diagram.xhtml</from-view-id>
        <navigation-case>
            <from-outcome>edit-weekedit</from-outcome>
            <to-view-id>/edit/editnotice.xhtml</to-view-id>
        </navigation-case>
</navigation-rule>

我的导航方法是:

public void changeListener(AjaxBehaviorEvent event) {
        SelectOneMenu source = (SelectOneMenu) event.getSource();
        if (source.getValue().equals("number_of_node")) {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            String outcome = "edit_weekedit"; // Do your thing?
            facesContext.getApplication().getNavigationHandler().handleNavigation(facesContext,null, outcome);
        }
    }

我使用 apache myfaces 2.0。

这里有什么问题?

最好的问候投票

4

1 回答 1

1

在您changeListener的结果中edit_weekedit带有下划线,但在您的配置中edit-weekedit带有连字符。因此出现错误,请使它们都相同并重新运行。

于 2012-04-16T07:18:45.523 回答