Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby - "can't convert Symbol into Integer" when try to access data in array

Here's a sample of array:

{"C1"=>[
        {:upc=>"51857195821952", :product_id=>"1234", :name=>"name", :price=>" $15 ", :color=>"green", :size=>"L", :description=>"descr"},
        {:upc=>"352353wegs", :product_id=>"456", :name=>"name2", :price=>"$21", :color=>"black", :size=>"S", :description=>"descr"}, # ...
       ],
 #...
}

And here as I am trying to fetch data from that array:

@array.each do |p|
  product = Product.new
  product.sku = p[0]
  product.name = p[1][0][:name] #can't convert Symbol into Integer
  price = p[1].select{ |pr| !pr[:price].nil? and pr[:price] != "0" }.min_by{ |i| i[:price].to_f }[:price]
  product.price = "%.2f" % (price.to_f)
  ...
end

Every time I try to fetch data from the array, I get on the line product.name = the error can't convert Symbol into Integer.

What is wrong in this case? I spent a part of afternoon on this issue, but unfortunately I still cannot figure out it...

Thanky you

like image 583
user984621 Avatar asked Jun 16 '26 03:06

user984621


1 Answers

Your @array is actually a hash. It is formated like following:

{ 
  'name1' => [{:upc => "..."},{:upc => "..."}],
  'name2' => [{:upc => "..."},{:upc => "..."}],
  #...
}

Since it is a Hash, you can use 2 arguments in the each (works for map also) method (one for the key, the other for the value):

@array.each do |name, array|
  product = Product.new
  product.sku = name # returns "C1"
  array.each do |data|
    data[:upc]
    data[:name]
    #etc...
  end
end
like image 136
MrYoshiji Avatar answered Jun 19 '26 00:06

MrYoshiji



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!