0

私はこれにかなり近づいていますが、細部に追いついています。has_many :through 関係を更新しようとしています。編集フォームを送信すると、更新したい適切な属性を抽出できません。出荷数量を更新するループは、そのフィールドを正しい値で更新しません。params[:product_shipments] ハッシュから qty_shipped 属性のみを抽出するにはどうすればよいですか?

This is the contents of my params[:product_shipments] hash that the update action is working with

"product_shipments"=> {"82"=>{"qty_shipped"=>"234"},
                       "83"=>{"qty_shipped"=>"324"},
                       "84"=>{"qty_shipped"=>"324"}}, 
                       "commit"=>"Update Shipment", "id"=>"250"}

@shipment.product_shipments ループは更新を適用可能な shipping_id のみに制限するため、これには出荷を更新するために必要なすべての情報があります。私の問題は、これが更新アクションによって呼び出される次のSQLであることです

ProductShipment Load (0.3ms)  SELECT `product_shipments`.* FROM `product_shipments` WHERE `product_shipments`.`shipment_id` = 250
BEGIN
UPDATE `product_shipments` SET `qty_shipped` = 1 WHERE `product_shipments`.`id` = 82
COMMIT
BEGIN
UPDATE `product_shipments` SET `qty_shipped` = 1 WHERE `product_shipments`.`id` = 83
COMMIT
BEGIN
UPDATE `product_shipments` SET `qty_shipped` = 1 WHERE `product_shipments`.`id` = 84
COMMIT

上記の SQL を生成する update アクションは次のとおりです。

def update
  @shipment = Shipment.find(params[:id])
  @shipment.update_attributes(params[:shipment])

  @shipment.product_shipments.each do |shipment|
    shipment.update_attributes(:qty_shipped=> params[:product_shipments])
  end

  respond_with @shipment, :location => shipments_url
end

rbates nested_forms gem を使用することはお勧めしません。なぜなら、レールがどのように機能するかを学ぶ目的でこれを理解したいからです。

<%= hidden_field_tag("product_shipments[][#{product_shipment.id}]") %>
<%= hidden_field_tag("product_shipments[][product_id]", product_shipment.id) %>
<%= text_field_tag "product_shipments[][qty_shipped]", product_shipment.qty_shipped,:class => 'shipment_qty_field'%>&nbsp<%=@product.product_name %>
4

1 に答える 1

1
@shipment.product_shipments.each do |product_shipment|
   product_shipment.update_attributes(:qty_shipped => params[:product_shipments][product_shipment.id][:qty_shipped])
end

これをすべて行う必要はありません。ネストされたフォームを使用するだけです。これぞレイルズ!

http://railscasts.com/episodes/196-nested-model-form-part-1

パラメータは次のようになります

{:product_shipments => { 79 => { :qty_shipped => 450 }, 80 => { :qty_shipped => 35 } }, :shipment_id => 1 }

それを取得するには、次のようにフィールドに名前を付ける必要があります

<input name="product_shipments[79][qty_shipped]" value="450" />
<input name="product_shipments[80][qty_shipped]" value="35" />

それを生み出すには、

<% @shipment.product_shipments.each do |product_shipment| %>
  <%= text_field_tag "product_shipments[#{product_shipment.id}][qty_shipped]", product_shipment.qty_shipped || 0 %>
<% end %>
于 2012-07-05T05:10:51.123 に答える