我需要从动作处理程序中确定表单字段的 ID。该字段是包含的 facelets 组件的一部分,因此形式会有所不同。
包含的.xhtml
<ui:component>
<h:inputText id="contained_field"/>
<h:commandButton actionListener="#{backingBean.update}" value="Submit"/>
</ui:component>
示例_包含.xhtml
<h:form id="containing_form">
<ui:include src="/included.xhtml"/>
</h:form>
如何update
在运行时确定方法中表单的 ID?或者更好的是,直接输入字段的 ID。