我需要从父组件中读取某个属性...但它根本不起作用,
我尝试了两件事来定义属性:
<ui:param>
和<c:set>
并阅读它们我还尝试了两件事:
<ui:fragment>
和<c:if test>
但没有运气 这是代码:
<ui:param name="panelName" value="#{component.parent.attributes.panelName}" />
<c:set var="panelName2" value="{component.parent.attributes.panelName}" scope="view" />
<c:if test="#{panelName == 'abc'}">
anything
</c:if>
<ui:fragment rendered="#{panelName2 == 'abc'}">
Hellooo
</ui:fragment>
我正在使用JSF 2.2
有人可以解释为什么会这样吗
提前致谢