我在引用和显示复合组件的子组件时遇到问题:
<xyz:mycomponent>
<h:outputText value="some text"/>
<h:outputText value="another text"/>
</xyz:mycomponent>
wheremycomponent
是这样定义的:
<composite:implementation>
<!-- some tags here -->
<h:paneGroup>
<!-- I want component's childs (two outputText's) to be rendered here -->
</h:paneGroup>
</composite:implementation>
我可以通过列出组件的子组件,#{cc.children}
但我不知道如何在复合组件的特定位置呈现它们。有什么想法或解决方法吗?