欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Velocity foreach 获取下标和size

程序员文章站 2022-04-01 12:02:24
...
Velocity foreach 获取下标和size
            
    
    博客分类: velocity 乔乐共享velocityforeachindexsize 

$!{velocityCount}数量是从1开始的,所以获取下标直接-1就可以了,关于总数量直接$!{list.size()}。
#foreach($fundDet in $!list)
					<tr bgcolor="#f3f3f3">
					<td><input name="" type="checkbox" value="" style="border:none"/></td>
					<td height="32px">$!{velocityCount}</td>
					<td height="32px">$!{list.size()}</td><!-- debitAmt -->
					<td height="32px">$!{fundDet.creditAmt}</td>
					<td height="32px">$!{fundDet.profitAmt}</td>
					<td height="32px">$!{fundDet.fundSource}</td>
					<td height="32px">$!{fundDet.preBalance}</td>
					<td height="32px">$!{fundDet.balance}</td>
					<td height="32px">$!{fundDet.transSerial}</td>
					<td height="32px">$!{fundDet.transDate}</td>
					<td height="32px">$!{fundDet.transTime}</td>
					<td height="32px">$!{fundDet.comments}</td>
					<td height="32px">$!{fundDet.status}</td>
					<td height="32px">$!{fundDet.settleDate}</td>
				</tr>
  • Velocity foreach 获取下标和size
            
    
    博客分类: velocity 乔乐共享velocityforeachindexsize 
  • 大小: 12.2 KB