我正在尝试根据特定条件在 NVelocity 中打印记录:
下面是片段......基本上,循环遍历地址对象,如果当前 AdType 是“当前地址”,则打印它然后退出循环......
我的输出 html 中出现“#break”……好像它忽略了它……
我有 1.1.1 版的 NVelocity
谢谢
#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