gpt4 book ai didi

jsf - 如果 jsf 中的其他条件

转载 作者:行者123 更新时间:2023-12-04 17:37:12 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Correct syntax to compare values in JSTL <c:if test="${values.type}=='object'"> [duplicate]

(1 个回答)



The representation of if-elseif-else in EL using JSF

(4 个回答)


5年前关闭。




我必须按组显示元素列表。我期待像图像中那样。

enter image description here

如果我删除 if在所有组中调节其打印所有选项。

<p:accordionPanel value="#{menuView.menunames}" var="name">
<p:tab title="#{name}">
<c:forEach items="#{menuView.menu}" var="entry">

<h:outputText value="(#{entry.key} == #{name})"></h:outputText>
<c:if test='#{entry.key} == #{name}'>
<h:dataTable value="#{entry.value}" var="submenu">
<h:column>
<h:outputText value="#{submenu}" />
</h:column>
</h:dataTable>
</c:if>
</c:forEach>
</p:tab>
</p:accordionPanel>

private Map<String, List<String>> menu;
private List<String> menunames;

最佳答案

EL 表达式应该是这样的:

<h:outputText value="#{entry.key == name}">
<c:if test="#{entry.key eq name}">

关于jsf - 如果 jsf 中的其他条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34013803/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com