对于我的Grails项目,我将用户数据加载到表中,表的最后一列只有“Delete”按钮。这是一个管理页面,因此他们可以删除用户。我想通过从表中提取用户名和名称来实现删除按钮功能,并且能够在控制器中访问该用户名和名称,这样我就可以使用其他类从我的数据库中删除用户(这是一个学校项目所以我们正在做List)。我不知道该怎么做,因为它与我可以做类似param之类的表格不相似
<div class="container" id="Apps Table">
<table class="table table-hover table-striped">
<thead>
<tr>
<th>App Name</th>
<th>Developer</th>
<th>Link</th>
<th>Category</th>
<th>Votes</th>
<th></th>
</tr>
</thead>
<tbody>
<g:each in="${reviewApps}">
<tr>
<td>${it.getAppName()}</td>
<td>${it.getDeveloperName()}</td>
<td>${it.getLink()}</td>
<td>${it.getVotes()}</td>
</tr>
</g:each>
<td>Snapchat</td>
<td>Julie Dooley</td>
<td>https://itunes.apple.com/us/app/snapchat/id447188370?mt=8</td>
<td>Meditation</td>
<td>1</td>
<td> <button class="btn-info" id="View App">View App</button> </td>
</tr>
</tbody>
</table>