为什么渲染部分与集合不会工作?

时间:2016-05-14 08:24:40

标签: ruby-on-rails

这是我的代码: 在我的index.erb

<tbody>
    <tr>
        <th>Company</th>
    </tr>
    <% render partial: :company, collection: @companies %>
</tbody>

在我的_company.erb上:

<tr>
    <td><%= link_to company.name, company %></td>
</tr>

它不会在视图上显示数据。

1 个答案:

答案 0 :(得分:3)

您需要更改

<% render partial: :company, collection: @companies %>

<%= render partial: :company, collection: @companies %>

您错过了=