-1
這裏是我的代碼: 我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>
它不會顯示在視圖中的數據。
它顯示空白頁? – Pavan
是的,沒有錯誤,數據不會顯示。 –