有没有办法打破 foreach 循环的速度?

发布于 2024-08-09 20:49:19 字数 173 浏览 4 评论 0原文

我正在通过使用 foreach 迭代(权限)集合来寻找特定条件。那么,如果我找到了我需要的所有内容并且不再需要循环,有没有办法跳出循环?我对速度很陌生,并试图理解这种奇怪的语言。

#foreach ($perm in $space.getPermissions())  
#end

I'm looking for a certain condition by using foreach to iterate through a collection (of permissions). So if I find all that I need and don't need to loop anymore, is there a way to break out of the loop? I am new to velocity and trying to grok this weird language.

#foreach ($perm in $space.getPermissions())  
#end

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

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

发布评论

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

评论(1

旧人九事 2024-08-16 20:49:19

最新版本的 Velocity (1.6) 包含一条语句 #break

https: //velocity.apache.org/engine/1.6.2/user-guide.html#Loops

## list first 5 customers only
#foreach( $customer in $customerList )
    #if( $velocityCount > 5 )
        #break
    #end
    $customer.Name
#end

The latest version of Velocity (1.6) contains a statement #break

https://velocity.apache.org/engine/1.6.2/user-guide.html#Loops

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