私は次のような配列を持っています:
@shipment_products
[
{"old_qty_shipped"=>"324", "product_id"=>"1", "qty_shipped"=>"12443"}
{"old_qty_shipped"=>"4343423", "product_id"=>"3", "qty_shipped"=>"321344"}
{"old_qty_shipped"=>"23", "product_id"=>"4", "qty_shipped"=>"321"}
]
こういうことができるようになりたい
@shipment_products.each do |p|
Product.adjust_qtys(p.old_qty_shipped, p.qty_shipped, p.product_id)
end
次のエラーが発生します
NoMethodError (undefined method `qty_shipped' for #<ActiveSupport::HashWithIndifferentAccess:0x007f>)
配列は、これを行うのに完全に適切な形式ではありません。モデルで作成したメソッドを呼び出すことができるように、キー/値を反復処理して属性を抽出できる方法を見つける必要があります。何か案は?