<#if pageList?exists>
                 <#list pageList as test>
                <table>
                 <tr>
                   <td>
                   ${test.id}
                    </td>
                 </tr>
                   <tr>
                   <td>
                      ${test.name}
                    </td>
                 </tr>
 <tr>
                   <td>
                     <a href="">修改<a>
                    </td>
                 </tr>                 </table>
</#list>
</#if>
----
我想做修改,会循环很多修改,我想点其中一个修改,怎么获取到这一行的ID?