我在使用JSF中的复合组件引用Id时遇到了一些麻烦,例如:
`<composite:interface>
<composite:attribute name="id" required="true"/>
</composite:interface>
<composite:implementation>
<h:inputText id="#{cc.attrs.id}" value="Any"
</composite:implementation>
` 当我尝试将Id作为参数传递时,我无法从“for”中引用它,例如来自outputLabel,似乎JSF中的这种复合组件不支持动态ID,它的解决方案是什么?
提前致谢。