这类似于我之前的问题Ruby On Rails Active Admin has_many 更改下拉列表以使用不同的列
我想出了如何重新分配 af.inputs
但是在查看项目时我将如何重新分配数据的显示...
例如:
公共 Git 仓库:https ://github.com/gorelative/TestApp
我的代码片段fillups.rb
ActiveAdmin.register Fillup do
form do |f|
f.inputs do
f.input :car, :collection => Car.all.map{ |car| [car.description, car.id] }
f.input :comment
f.input :cost
f.input :mileage
f.input :gallons
f.buttons
end
end
end