从变量中获取价值

时间:2017-04-26 13:28:29

标签: java apache velocity

我的时区下午好。

我正在使用Velocity 1.4。 在模板中,我有以下代码:

#set($countRow = 0)
....
<td width="80" align="center" class="tgDataColumn"   id="MAIL_LIST_ID_R{$countRow}_C0" nowrap="">$row.sector</td>
<td width="80" align="center"  class="tgDataColumn"   id="MAIL_LIST_ID_R'$countRow'_C6" nowrap="">$row.isin</td>
<td width="150" align="center"  class="tgDataColumn"   id="MAIL_LIST_ID_R$countRow_C7" nowrap="">$row.totalPositions</td>

以下结果:

<td width="75" align="center"   class="tgDataColumn"   id="MAIL_LIST_ID_R{5}_C5" nowrap="">1040403154H</td>
<td width="80" align="center"  class="tgDataColumn"   id="MAIL_LIST_ID_R'5'_C6" nowrap="">QA0007227737</td>
<td width="150" align="center"  class="tgDataColumn"   id="MAIL_LIST_ID_R$countRow_C7" nowrap="">1</td>

如何在没有引号或括号的情况下获取 countRow 变量中的值,以获得以下内容:

<td width="75" align="center"   class="tgDataColumn"   id="MAIL_LIST_ID_R5_C5" nowrap="">1040403154H</td>

提前致谢 最好的问候。

0 个答案:

没有答案