在 Rails 中可点击 Link_to Table

Clickable Link_to Table in Rails

有什么方法可以实现可点击的 td 吗?

<% @companies.each do |c| %>
  <tbody>
  <tr>
    <td><%= c.name %></td>...

现在我想点击公司名称并查看另一个视图(该公司概览)。 link_to 有什么办法吗? 顺便说一句,我想要此视图中显示的公司名称。

只需使用link_to:

<td><%= link_to c.name, some_path %></td>