0
我擁有數據庫中人員列表的名,姓和名稱。 現在我想做出這樣使用數據庫中的值創建陣列中的散列表
[{
value: <corresponding id>,
label: "<corresponding person name>"
},
{
value: <corresponding id>,
label: "<corresponding person name>"
},
....
]
thanks.how我可以使它 值:<對應的ID>不像 :value =><對應的ID >在你的回答中 –
在Ruby 1.9.3中'{:value => 1} == {value:1}'嘗試從irb中輸入'{value:1}',你將得到'{:value => 1 }' – Salil
我在紅寶石1.8.7 –