我正在使用 Grails,我目前面临这个问题。
这是我的 html 表的结果
这是我来自 gsp 页面的代码
<tr>
<th>Device ID</th>
<th>Device Type</th>
<th>Status</th>
<th>Customer</th>
</tr>
<tr>
<g:each in = "${reqid}">
<td>${it.device_id}</td>
</g:each>
<g:each in ="${custname}">
<td>${it.type}</td>
<td>${it.system_status}</td>
<td>${it.username}</td>
</g:each>
</tr>
所以问题是,如何格式化表格以使“LHCT271 , 2 , Thomasyeo ”相应地向下移动?我试图在<tr>
这里和那里添加标签,但它不起作用..有什么帮助吗?