Rails部分工作在页面末尾调用,而不是在中间

时间:2013-04-22 02:58:08

标签: ruby-on-rails render partial

我有以下代码部分:

<%= link_to 'Edit', edit_computer_path(@computer) %> |
<%= link_to 'Back', computers_path %>

<div>
  <h2>New config</h2>
  <%= render "kernel_configs/computerkernelconfig", :locals => { :computer => @computer } %>
</div>

<div>
  <h2>Submitted Configs</h2>
  <table>
    <tr>
      <th>Rating</th>
      <th>Title</th>
      <th>Contributor</th>
      <th>Features</th>
      <th>Config file</th>
      <th></th>
    </tr>

    <%= render @computer.kernel_configs %>

  </table>
</div>

抱怨没有路线:

  

ActionController :: RoutingError(没有路由匹配{:action =&gt;“edit”,   :controller =&gt;“kernel_configs”,:id =&gt;#}):
  应用程序/视图/ kernel_configs / _kernel_config.html.erb:13:在   _app_views_kernel_configs__kernel_config_html_erb___3252059691242213705_26424640' app/views/computers/show.html.erb:34:in _ app_views_computers_show_html_erb___4341746115390966607_23819760'
  app / controllers / computers_controller.rb:18:在'show'

如果我在第二次渲染后移动第一个渲染,那么页面渲染就会没有错误。所以我很确定有一条路线,实际上其中一条可能是:

 edit_kernel_config GET    /kernel_configs/:id/edit(.:format)   kernel_configs#edit
 edit_computer_kernel_config GET    /computers/:computer_id/kernel_configs/:id/edit(.:format)    kernel_configs#edit

作为参考,部分在这里:

<%= form_for( [@computer,@computer.kernel_configs.build], :multipart => true ) do |form| %>

  <div class="field">
    <%= form.label :title %>
    <%= form.text_field :title %>
  </div>

  <div class="field">
    <%= form.label :contributed_by %>
    <%= form.text_field :contributed_by %>
  </div>

  <div class="field">
    <%= form.label :features %><br />
    <%= form.text_area :features %>
  </div>

  <div class="field">
    <%= form.label "Upload File" %><br />
    <%= form.file_field :kernelconfig %>
  </div>

  <div class="field">
    <%= form.submit %>
  </div>

<% end %>

_kernel_congif partial:

<tr>

  <td><%= kernel_config.rating %></td>

  <td><%= kernel_config.title %></td>

  <td><%= kernel_config.contributed_by %></td>

  <td><%= kernel_config.features %></td>

  <td><%= truncate kernel_config.kernelconfig %></td>

  <td><%= link_to 'Edit', edit_kernel_config_path(kernel_config) %></td>

</tr>

1 个答案:

答案 0 :(得分:0)

正在发生的事情是,由于您在列表前面有表单,因此您正在调用@computer.kernel_configs.build,这会向@computer.kernel_configs添加新的空记录。

你的部分可能会崩溃,因为你试图显示这个新的空记录。

这就是为什么当您将表单部分移动到集合部分下方时,它可以正常工作。

编辑:

正如所料,您正在尝试创建指向空对象的链接。

错误发生在以下行:

# _kernel_config.html.erb
<td><%= link_to 'Edit', edit_kernel_config_path(kernel_config) %></td>

edit_kernel_config_path无法找到空kernel_config的路径。