问题:我将 EL 表达式传递给复合组件,但 EL 表达式是从复合组件内部而不是之前计算的。将 EL 表达式求值为字符串的意图是发送到复合组件。
我有一个复合组件,MenuTable
:
<cc:interface>
<cc:attribute name="model" type="nz.co.tradeintel.web.MenuTable"/>
<cc.attribute name="updateId" />
</cc:interface>
<cc:implementation>
<h:panelGroup id="menuTable">
<table>
<ui:repeat id="repeat1" value="#{cc.attrs.model.rows}" var="row">
<tr>
<ui:repeat id="repeat2" value="#{row.contents}" var="entry">
<td>
<p:commandLink action="#{cc.attrs.model.setSelected(entry)}" update="#{cc.attrs.updateId}" value="#{entry.toString()}"/>
</td>
</ui:repeat>
</tr>
</ui:repeat>
</table>
</h:panelGroup>
</cc:implementation>
目的是我将绝对组件 ID 作为属性传递,updateId
如下所示:
<p:PanelGroup id="updatingPanel">
<!-- Lots of components.-->
</p:PanelGroup>
<custom:MenuTable updateId="#{component.clientId}:updatingPanel" model="#{menuBackBean.menuTable}" />
问题是, 的 EL 表达式updateId
是从复合组件内的范围评估的<p:commandLink />
,我收到以下错误:
javax.faces.FacesException: Cannot find component with identifier ":j_idt37:j_idt39:updatingPanel:j_idt61:repeat1:0:repeat2:0:j_idt65:updatingPanel" referenced from "j_idt37:j_idt39:updatingPanel:j_idt61:repeat1:0:repeat2:0:j_idt65".
注意:JSF 认为我正在尝试更新一个组件,其 IDupdatingPanel
位于复合组件内部。
为什么不从外部范围评估 EL 表达式:<custom:MenuTable/>
?
有一些相关的答案,但我不明白,比如这个。
使用 Mojarra 2.1.15