我不知道为什么,但我使用的是 JSF 2.2(Mojarra 2.2.6 实现)但隐式变量 flowScope 没有被识别。
这是错误:
/protected/pages/certificateWizard/certificateWizard.xhtml @35,67 value="#{flowScope.firstName}":目标无法到达,标识符“flowScope”解析为空
这是我的代码:
<h:outputLabel value="First Name" for="firstname" styleClass="control-label col-md-2" />
<div class="control col-md-4">
<h:inputText id="firstname" value="#{flowScope.firstName}" class="form-control" required="true">
<f:passThroughAttribute name="placeHolder" value="First Name"/>
</h:inputText>
</div>
</h:outputLabel>
这是我在 faces-config.xml 文件中的流配置:
<flow-definition id="certificateWizard">
<flow-return id="flowReturn">
<from-outcome>protected/pages/index.xhtml</from-outcome>
</flow-return>
</flow-definition>`