2

我正在尝试使用一个表单编辑多条记录,因此用户可以编辑几条记录,然后在最后而不是在每个单独的记录之后按提交。我已经发布了我当前的代码,我收到了这个错误:

undefined method `connection_connection_path'

控制器

def show
  @customer = Customer.find(params[:id])
  @connection = @customer.connections
  respond_to do |format|
    format.html # show.html.erb
    format.json { render json: @customer }
  end
end

看法

<table class="table">
    <thead>
        <th>Interface</th>
        <th>Device</th>
        <th>Speed</th>
        <th>Site</th>
        <th>Capable</th>
        <th>Notes</th>

    </thead>
    <%= form_for(@connection) do |f| %>
    <% @connection.each do |l| %>
    <tr>
        <td><%= l.interface %></td>
        <td><%= l.device %></td>
        <td><%= l.speed %></td>
        <td><%= l.site.name%> </td>
        <td><%= f.check_box :check %></td>
        <td><%= f.text_field :notes %></td>

    </tr>
    <% end %>
            <tr><%= f.submit %></tr>
</table>
<% end %>

路线

resources :connections


resources :sites


resources :customer_sites


resources :customers

root :to => "customers#index"
4

1 回答 1

0

那么你的提交按钮在哪里?它不应该在显示中完成,也许您可​​以在控制器中创建一个新方法并执行多重编辑功能。

基本概念是当您进行检查时,您需要将对象数组传递给您的方法,并逐个更新它们。或者你也可以使用 JS 来做到这一点。

请参阅此 railscast http://railscasts.com/episodes/165-edit-multiple

这个stackoverflow Rails 3在一个表单中编辑多个记录

这些资源你可以通过 google 轻松获得 :D 如果仍有问题,请再次来这里询问

于 2013-05-23T16:11:14.437 回答