0
Rails初心者はここにあります。私は次のように定義されたモデルTeam
とVenue
が関連付けられている:関連付けられたモデル属性継承
class Team < ApplicationRecord
has_many :home_venues, class_name: "Venue"
end
と
class Venue < ApplicationRecord
belongs_to :team, optional: true, foreign_key: :team_id
end
どちらのモデルは、属性:city
と:region
を持っています。 team.home_venues.create
に電話すると、特に指定がない限り、:city
と:region
の新しく作成されたvenue
の値は、デフォルトの:city
と:region
の値をteam
に作成したいと思います。
この機能を実現するにはどうすればよいですか?