有没有办法打破 foreach 循环的速度?
我正在通过使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最新版本的 Velocity (1.6) 包含一条语句 #break
https: //velocity.apache.org/engine/1.6.2/user-guide.html#Loops
The latest version of Velocity (1.6) contains a statement #break
https://velocity.apache.org/engine/1.6.2/user-guide.html#Loops