我今天的问题是:是否可以在不使用组件的情况下启动面h:commandButton
流?在我的特定情况下,我想使用 h:selectOneMenu
组件根据用户选择的值启动特定流。
答案是肯定的,但需要一些调整。要输入流,需要创建一个等于流 id 的导航结果。UICommand 组件(如 h:commandButton 和 h:commandLink)可以做到这一点,但 UIInput 组件不能(它们缺少"action"属性)。但是,可以通过编程方式触发导航,例如通过使用 ValueChangeListener:
<h:form>
<h:selectOneMenu value="#{requestScope.selectedFlow}">
<f:selectItem itemLabel="--- Select a Flow ---" noSelectionOption="true" />
<f:selectItem itemLabel="Flow A" itemValue="flow-a" />
<f:selectItem itemLabel="Flow B" itemValue="flow-b" />
<f:valueChangeListener type="example.NaviagtionTargetListener" />
<f:ajax execute="@form" render="@all"/>
</h:selectOneMenu>
</h:form>
对应的 ValueChangeListener:
public class NaviagtionTargetListener implements ValueChangeListener {
@Override
public void processValueChange(ValueChangeEvent event) throws AbortProcessingException {
String target = (String) event.getNewValue();
ConfigurableNavigationHandler nh = (ConfigurableNavigationHandler) FacesContext.getCurrentInstance().getApplication().getNavigationHandler();
nh.performNavigation(target);
}
}
我在GitHub上创建了一个示例[1],并写了一篇关于FacesFlow使用的博客文章[2]
[1] https://github.com/tasel/facesflow-example
[2] http://blog.oio.de/2014/02/12/a-comprehensive-example-of-jsf-faces-flow/