速度:做一些除了最后一个循环迭代之外的事情

发布于 2024-12-17 04:18:04 字数 202 浏览 0 评论 0原文

在速度方面,我想在最后一个循环中做一些不同的事情。

正确的习语是什么?

相关java中增强for循环的最后一次迭代< /a>

In velocity, I want to do something different in the last loop.

What is the correct idiom?

RELATED: Last iteration of enhanced for loop in java

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

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

发布评论

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

评论(4

柠栀 2024-12-24 04:18:04

如果您处于最后一次迭代,则可以使用测试::

#foreach( $item in $list )
    $item.text #if( $foreach.hasNext ), #end
#end

You can use a test if you are in last iteration::

#foreach( $item in $list )
    $item.text #if( $foreach.hasNext ), #end
#end
最近可好 2024-12-24 04:18:04

@soulcheck 的答案就是您所需要的,但请注意 $foreach 变量仅在速度 1.7 中可用,如果您使用的是早期版本,则可以使用:

#foreach( $item in $list )
    $item.text #if( $velocityHasNext ), #end
#end

但是,$velocityHasNext 变量在 1.7 版本中已弃用,并在 2.0 版本中删除,取而代之的是 $foreach.hasNext

@soulcheck's answer is what you need, but be aware that the $foreach variable is only available in velocity 1.7, if you're using an earlier version you can use:

#foreach( $item in $list )
    $item.text #if( $velocityHasNext ), #end
#end

However, the $velocityHasNext variable is deprecated in versions 1.7 and removed in 2.0 in favour of $foreach.hasNext.

遥远的她 2024-12-24 04:18:04

我使用的习惯用法是保存循环未完成时要添加的可选文本。

#set($sep = "")    
#foreach($item in $list)
 $sep$item
 #set($sep = ", ")
#end

The idiom I use is to save the optional text to be added if the loop doesn't finish.

#set($sep = "")    
#foreach($item in $list)
 $sep$item
 #set($sep = ", ")
#end
樱花落人离去 2024-12-24 04:18:04

这在旧版本的 Velocity 中对我有用

#if($velocityCount < $list.size()), #end

This worked for me in an older version of Velocity

#if($velocityCount < $list.size()), #end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文