在我的 Seam 应用程序中,我有一个 Seam 组件,它返回一个 ( @Datamodel
) 我想要转换为一组<li>
HTML 元素的项目列表。我有这个工作没有问题。
但是现在,我想根据 EL 表达式拆分列表。因此 EL 表达式确定是否<ul>
应该启动一个新元素。我尝试了以下方法:
<s:fragment rendered="#{action.isNewList(index)}">
<ul>
</s:fragment>
<!-- stuff that does the <li>'s goes here -->
<s:fragment rendered="#{action.isNewList(index)}">
</ul>
</s:fragment>
但这是无效的,因为 for 的嵌套<ul>
是错误的。
我该怎么做?