列表包含在 JSF 页面中不起作用的方法
我有两个由同一对象组成的列表。
我想检查第一个列表是否包含第二个列表的对象,
<ui:repeat var="item" value="#{userTypeController.permissionItems}">
<c:if test="#{userTypeController.permissionItemsUserType.contains(item)}">
<h:selectBooleanCheckbox value="#{true}"/>
<h:outputText value="#{item.getAction()}" />
</c:if>
<c:if test="#{!userTypeController.permissionItemsUserType.contains(item)}">
<h:selectBooleanCheckbox value="#{false}"/>
<h:outputText value="#{item.getAction()}" />
</c:if>
</ui:repeat>
但这似乎不起作用,我得到的都是假的。
我已经更改了 equals 和 hashcode 方法,但没有帮助。
I have two list that consist out of the same object.
I want to check if the first list containts an object of the second list
<ui:repeat var="item" value="#{userTypeController.permissionItems}">
<c:if test="#{userTypeController.permissionItemsUserType.contains(item)}">
<h:selectBooleanCheckbox value="#{true}"/>
<h:outputText value="#{item.getAction()}" />
</c:if>
<c:if test="#{!userTypeController.permissionItemsUserType.contains(item)}">
<h:selectBooleanCheckbox value="#{false}"/>
<h:outputText value="#{item.getAction()}" />
</c:if>
</ui:repeat>
but this doesn't seem to work and all I'm getting is false.
I've changed the equals and hashcode methodes but didn't help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像
这样的 JSTL 标记在视图构建期间运行,结果只是 JSF 组件。 JSF 组件在视图渲染期间运行,结果仅为 HTML。它们运行不同步。 JSTL 标记首先从上到下运行,然后 JSF 组件从上到下运行。在您的情况下,当 JSTL 标记运行时,在任何地方都没有
#{item}
的方法,因为它是由 JSF 组件定义的,因此对于 JSTL 来说,它总是被评估为空。您需要改用 JSF 组件。在您的特定情况下,
应该执行此操作:另请参阅:
JSTL tags like
<c:if>
runs during view build time and the result is JSF components only. JSF components runs during view render time and the result is HTML only. They do not run in sync. JSTL tags runs from top to bottom first and then JSF components runs from top to bottom.In your case, when JSTL tags runs, there's no means of
#{item}
anywhere, because it's been definied by a JSF component, so it'll for JSTL always be evaluated as if it isnull
. You need to use JSF components instead. In your particular case a<h:panelGroup rendered>
should do it:See also: