我正在遍历数组或哈希,我想根据索引获取值。
@lv = {'apple' => ['round', 'red'], 'more names' => ['tags', 'more tags']}
@lv.each do |key, value|
# if the value is from the index key and equal to key itself...
end
我不确定如何从@lv
. 可以说我想得到apple
:
有没有@lv[0]
应该等于苹果的东西?因为
[0] => apple
[1] => more names
正确的?
所以我可以
@lv.each do |key, value|
if @lv[0] == key
# apple equals apple, then proceed
end
end
这样做的正确语法是什么?
谢谢!