0
我有一個哈希散列深:Ruby如何對散列哈希進行排序?
my_hash = {
:category_1 => {
:solution_1 => { :order => 1 },
:solution_2 => { :order => 2 }
},
:category_2 => {
:solution_3 => { :order => 3 },
:solution_4 => { :order => 4 }
}
}
我想排序:solution_ *哈希下:category_ *通過哈希鍵:訂單。有什麼建議麼?
(固定)
你想要的結果是什麼?你想要刪除一層嵌套嗎?否則,你的哈希已經訂購了... –
你想要什麼輸出? :類別哈希或:虛擬哈希?而且,如果一個人命令'1'和'4',另一個命令是'2'和'3'呢? – Gareth