在 JSF 中使用 ui:repeat 循环时显示行索引

发布于 2024-12-19 23:51:54 字数 170 浏览 1 评论 0原文

我正在使用 ui:repeat 标签,并且设置了 varstatus="current"。我尝试使用以下命令显示行索引,但没有显示任何内容。

   <h:outputText value="#{current.index}"/>

我想显示行索引。

I am using ui:repeat tag and I have set varstatus="current".I try to display the row index using the below command, but nothing is getting displayed.

   <h:outputText value="#{current.index}"/>

I would like to display the row index.

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

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

发布评论

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

评论(1

荆棘i 2024-12-26 23:51:54

它是在 Facelets 2.x< 中引入的/a>.鉴于它不起作用的事实,您正在使用 Facelets 1.x

Facelets 2.x 不是独立可用的。它嵌入在 JSF 2.x 中。如果可以,请升级到 JSF 2.x。如果不能,那么您要么将模型包装在也包含索引的自定义模型中,要么获取 (如果您的视图标记允许)(它是视图构建时间标记,而不是视图渲染时间标记),或者获取 Tomahawk 的 具有用于此目的的 rowIndexVar 属性。


更新根据评论,您原来使用的是 RichFaces。在这种情况下,您还可以使用 它提供了 rowKeyVar 属性:

<a4j:repeat value="#{bean.items}" var="item" rowKeyVar="index">
    <p>#{index} #{item}</p>
</a4j:repeat>

It was introduced in Facelets 2.x. Given the fact that it doesn't work, you're using Facelets 1.x.

Facelets 2.x is not standalone available. It is embedded in JSF 2.x. If you can, upgrade to JSF 2.x. If you can't, then you've either to wrap the model in a custom model which holds the index as well, or to grab <c:forEach> instead if your view markup allows it (it's a view build time tag, not a view render time tag), or to grab Tomahawk's <t:dataList> instead which has a rowIndexVar attribute for this purpose.


Update as per the comments, you turn out to be using RichFaces. In that case, you can also use the <rich:dataList> or <a4j:repeat> which offers both a rowKeyVar attribute:

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