Shopify APIには、shopify-api gemを使用してアクセスしようとしています。特に、配列に含まれるアイテムの価格にアクセスしようとしています。ここRuby配列の属性
product = ShopifyAPI::Product.find(id)
variant = product.variants
variant
は配列で、私はputs variant.inspect
を行うとき、私は、@のattributes`」下/変更に '価格' にアクセスするにはどうすればよい
[
#<ShopifyAPI::Variant:0x000000041c9e50 @attributes={
"id"=>23923477191,
"title"=>"Default Title",
"price"=>"6.00",
"sku"=>"shirts",
"position"=>1,
"grams"=>0,
"inventory_policy"=>"deny",
"compare_at_price"=>nil,
"fulfillment_service"=>"manual",
"inventory_management"=>"shopify",
"option1"=>"Default Title",
"option2"=>nil,
"option3"=>nil,
"created_at"=>"2016-06-30T14:06:07-04:00",
"updated_at"=>"2016-07-16T19:00:07-04:00",
"taxable"=>true,
"barcode"=>"",
"image_id"=>nil,
"inventory_quantity"=>1,
"weight"=>0.0,
"weight_unit"=>"kg",
"old_inventory_quantity"=>1,
"requires_shipping"=>true
}, @prefix_options={:product_id=>7509869767}, @persisted=true>
]
を取得しますか?