我有位置,音乐会和艺术家模型
class Location < ApplicationRecord
has_many :concerts, dependent: :destroy
has_many :artists, through: :concerts
end
class Concert < ApplicationRecord
belongs_to :location
belongs_to :artist
end
class Location < ApplicationRecord
has_many :concerts, dependent: :destroy
has_many :artists, through: :concerts
end
我目前正在使用 rails administrate,现在我想自定义 rails administrate gem,而不是在添加新音乐会时显示 id,我想在那里获取位置和艺术家姓名,而不是那里的 id。我在那里附上了截图。