这是一个数组示例:
{"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"}, # ...
],
#...
}
在这里,当我试图从该数组中获取数据时:
@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
每次我尝试从数组中获取数据时,我都会遇到product.name =
错误can't convert Symbol into Integer。
在这种情况下有什么问题?我花了一个下午的时间在这个问题上,但不幸的是我仍然无法弄清楚......
谢谢你