我有以下格式的数据结构:
data_hash = [
{ price: 1, count: 3 },
{ price: 2, count: 3 },
{ price: 3, count: 3 }
]
有没有一种有效的方法将:price
的值作为像[1,2,3]
这样的数组?
首先,如果你使用ruby <1.9:
array = [
{:price => 1, :count => 3},
{:price => 2, :count => 3},
{:price => 3, :count => 3}
]
然后得到你需要的东西:
array.map{|x| x[:price]}