?? range.vm
字號:
#*@test range.vmThis template is used for Velocity regression testing.If you alter this template make sure you change thecorresponding comparison file so that the regression test doesn't fail incorrectly.Tests the range operator [n..m]*#[1..5]#foreach($i in [1..5]) $i #end-----[0..0]#foreach($i in [0..0]) $i #end-----[-4..-5]#foreach($i in [-4..-5]) $i #end-----[ 1 .. 5 ]#foreach($i in [ 1 .. 5 ]) $i #end-----[5..1]#foreach($i in [5..1]) $i #end-----[-5..5]#foreach($i in [-5..5]) $i #end-----[5..-5]#foreach($i in [5..-5]) $i #end-----#set($a = 1)#set($b = 5)refs \$a=$a \$b=$b [\$a..\$b]#foreach($i in [$a..$b]) $i #end-----[\$a.. 7]#foreach($i in [$a.. 7]) $i #end-----[-7 ..\$a]#foreach($i in [-7 ..$a]) $i #end-----[ -7 ..\$a]#foreach($i in[ -7 ..$a]) $i #end------#set($foo = [0..5])setting in \$foo -> [0..5] :#foreach($i in $foo )$i #end----Now some use-case examples. Suppose we want a table to have 10 rows#set($arr = ["a","b","c"])<table>#foreach($i in $arr)<tr><td>$i</td></tr>#end#foreach($i in [4..10])<tr><td> </td></tr>#end</table>=done=
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -