JSF Composite 组件迭代并显示对象列表

发布于 2024-12-25 00:09:07 字数 1000 浏览 2 评论 0原文

在 JSP 和 JSTL 中,我通常会做这样的事情:

<c:forEach items="${userList}" var = "user">
    <div id = "user-block">
        <h1>${user.name}</h1>
        <div id = "user-description">
            <p>${user.description}</p>
        </div>
        <ul>
            <li> Age: ${user.age} </li>
            <li> City: ${user.city} </li>
            <li> Country: ${user.country} </li>
        </ul>
    </div>
</c:forEach>

我试图使用 Facelet 复合组件获得相同的结果:

<cc:interface>
    <cc:attribute name="value" type="java.util.List" required="true" shortDescription="The list of objects that should be displayed"/>
</cc:interface>

<cc:implementation>
    <div class = "event-block">

    </div>
</cc:implementation>

问题是我不知道如何迭代 #{cc.attrs.value} 中的对象。

LE: 我想知道是否有办法在不使用 JSP 或 JSTL 的情况下解决这个问题

In JSP and JSTL I would normaly do something like this:

<c:forEach items="${userList}" var = "user">
    <div id = "user-block">
        <h1>${user.name}</h1>
        <div id = "user-description">
            <p>${user.description}</p>
        </div>
        <ul>
            <li> Age: ${user.age} </li>
            <li> City: ${user.city} </li>
            <li> Country: ${user.country} </li>
        </ul>
    </div>
</c:forEach>

I'm trying to gain the same result using Facelet Composite Components:

<cc:interface>
    <cc:attribute name="value" type="java.util.List" required="true" shortDescription="The list of objects that should be displayed"/>
</cc:interface>

<cc:implementation>
    <div class = "event-block">

    </div>
</cc:implementation>

The problem is that I don't know how to iterate over the objects in #{cc.attrs.value}.

LE:
I would like to know if there is a way to solve this without using JSP or JSTL

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤单情人 2025-01-01 00:09:08

使用 ui:repeat 而不是 c:forEach

<ui:repeat value="#{cc.attrs.value}" var="user">
    <h1>#{user.name}</h1>
    ...
</ui:repeat>

请参阅 https://rogerkeays.com/jsf-c-foreach-vs-ui -repeat 用于进一步比较 c:forEachui:repeat

Use ui:repeat instead of c:forEach.

<ui:repeat value="#{cc.attrs.value}" var="user">
    <h1>#{user.name}</h1>
    ...
</ui:repeat>

See https://rogerkeays.com/jsf-c-foreach-vs-ui-repeat for further comparison of c:forEach and ui:repeat.

别想她 2025-01-01 00:09:08

您可以使用 #{cc.attrs.value} 引用该列表。它会是这样的:

<c:forEach items="${cc.attrs.value}" var = "user">
   // do your thing
</c:forEach>

You can refer to the list with #{cc.attrs.value}. It would be something like:

<c:forEach items="${cc.attrs.value}" var = "user">
   // do your thing
</c:forEach>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文