1

Rails 还是新手。我会尽量提供尽可能详细的信息。

我有一个表格可以让我一次更新多条记录。
它基于“单独编辑多个”Railscast 剧集

<%= form_tag(auction_clerk_path(@auction), :method => :put) do %>
  <% @lots.each do |lot| %>
    <%= fields_for "lots[]", lot do |f| %>
      <%= f.number_field :sale_price %>
    <% end %>
  <% end %>
<% end %>

(简化为每个实例只包含一个输入)

拍卖包含多个批次(待售物品)。
auction_clerk_path是我用来在一次拍卖中展示所有拍品的路线。

一切都很好......直到我尝试自定义我的地段路径......

我已将以下内容添加到我的lot.rb文件中以便能够使用:
/auctions/:auction_id/lots/:lot_number
而不是/auctions/:auction_id/lots/:id

def to_param
  lot_number
end

因此,在前面提到的表单中,字段以name="lots[12][sale_price]"where 12is呈现id

但是随着to_param更改,现在字段呈现name="lots[1][sale_price]"在 1 是lot_number.

当我保存时,提交的参数是 lot_numbers 而不是 ids。
所以很明显,当它尝试更新时,它不会找到正确的记录。

我的方法定义如下所示:

def save_clerking
  @updated_lots = Lot.update(params[:lots].keys, params[:lots].values).reject { |l| l.errors.empty? }
  if @updated_lots.empty?
    flash[:notice] = "Lots updated"
    redirect_to auction_clerk_path(@auction)
  else
    render :action => "clerk"
  end
end

我要么需要将我的方法定义更改为按批号查找,要么首先将表单更改为以某种方式输出 ID……但我不知道如何。

任何帮助表示赞赏。谢谢!

4

2 回答 2

0

您可以在控制器操作中按批号获取 id,并将它们提供给 update 方法而不是 params 键。

于 2013-12-19T20:34:41.190 回答
0

Fixed this through some help on another question.

I changed my method def to

@updated_lots = []
params[:lots].each do |lot_number, attributes|
  lot = Lot.where("lot_number = ? AND auction_id = ?", lot_number, params[:auction_id]).first
  if lot.update_attributes(attributes)
    @updated_lots << lot
  end
end
于 2013-02-18T16:59:34.020 回答