我正在使用piggybak gem。
我有一个产品q
:
1.9.3p194 :009 > q
=> #<Product id: 20, name: "iPad", description: "<p>\r\n\tiPad 11" tablet that will change the way...", price: 499.0, vendor_id: 11, created_at: "2012-12-15 23:40:27", updated_at: "2013-01-01 00:18:39", image: "ipad.png", sku: "AB-09123">
q
具有piggybak_sellable
具有其他属性的属性。
1.9.3p194 :010 > q.piggybak_sellable
=> nil
Product
这是在 Rails Admin UI 中分配的可用属性的示例。
1.9.3p194 :011 > p.piggybak_sellable
=> #<Piggybak::Sellable id: 1, sku: "AR4590", description: "Blue Shirt", price: #<BigDecimal:7ffa1ba863b8,'0.2499E2',18(45)>, quantity: 100, item_id: 19, item_type: "Product", active: true, unlimited_inventory: false>
我想将这些属性添加到nil
记录中。
我想更新所有这些属性,q.piggybak_sellable
而不必手动进行,即设置q.piggybak_sellable.sku = "ARJHR"
等。
我试过做update_attributes
,但没有奏效:
1.9.3p194 :008 > q.piggybak_sellable.update_attributes(:sku => "YJ4567", :description => "Awesome tablet", :price => 399, :quantity => 100, :item_id => 20, :item_type => "Product", :active => true)
NoMethodError: undefined method `update_attributes' for nil:NilClass
关于如何做到这一点的想法?
我试图把它放在我的Product
模型上的回调中——为了它的价值。
谢谢。