有没有办法在鞋子中以表格格式显示数据?
<table border ="1">
<tr>
<th>Name</th>
<th> Content</th>
</tr>
@products.each do |product|
<tr>
<td> product.name </td>
<td>product.detail</td>
</tr>
end
</table>