Breaking out of a foreach loop in Velocity

十年热恋 提交于 2019-12-12 01:12:27

问题


I am using

#if( $velocityCount > 5 )
    #break
#end

to break my foreach loop, but its not breaking instead it is printing #break in the output.

I also tried:

#foreach($item in $group.shipItems) 
    #if( $velocityCount > 5 )
        #item.break
    #end
#end

Here also it is printing #item.break instead of breaking the loop.


回答1:


If you are using version 1.6, then #break should suffice. This makes me think you are using 1.4 or 1.5. Or are you seeing some errors?

If you are using version 1.7, #break should still work, but you could be specific and do

#foreach($item in $group.shipItems) 
    #if( $foreach.count > 5 )
        #break($foreach)
    #end
#end

Please make it a habit to specify version when asking questions.



来源:https://stackoverflow.com/questions/21251051/breaking-out-of-a-foreach-loop-in-velocity

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!