我正在尝试根据某些条件打印NVelocity中的记录:
以下是片段...基本上,循环遍历地址对象,如果当前的AdType是“当前地址”,则打印它然后退出循环...
我在输出html中得到“#break”......好像它忽略了它..
我有NVelocity版本1.1.1
由于
#foreach($spAddress in $Report.Spouse.Addresses)
#if( $spAddress.AdType == "Current Address")
<tr>
<td width="23%">
<font size="2"><strong>$spAddress.AdType :</strong></font>
</td>
<td width="75%">
<font size="2">$spAddress.CivicNumber, $spAddress.StreetName,$spAddress.City, $spAddress.Province, $spAddress.PostalCode</font>
</td>
</tr>
#break
#end
#end