我对 ActiveAdmin 和 RoR 完全陌生,我不知道如何更改 has_many 关联中下拉列表的可见值。
填充模型
class Fillup < ActiveRecord::Base
// key is car_id:integer
belongs_to :car
end
汽车模型
class Car < ActiveRecord::Base
validates :description, :presence => true
key is fillup_id:integer
has_many :fillups
end
它目前显示的内容:
它目前显示我假设对分配给它的 Car 的编码引用。
我需要它显示什么:
我需要它来显示给定的描述,该描述description:string
在Car Model
.