class Agents << ActiveRecord::Base
belongs_to :customer
belongs_to :house
end
class Customer << ActiveRecord::Base
has_many :agents
has_many :houses, through: :agents
end
class House << ActiveRecord::Base
has_many :agents
has_many :customers, through: :agents
end
Jak dodać do Agents
modelu Customer
?
Czy to najlepszy sposób?
Customer.find(1).agents.create(customer_id: 1, house_id: 1)
Powyższe działa dobrze z konsoli, jednak nie wiem, jak to osiągnąć w rzeczywistej aplikacji.
Wyobraź sobie, że dla klienta wypełniany jest formularz, który również przyjmuje house_id
jako dane wejściowe. Następnie mam wykonać następujące czynności na moim kontrolerze?
def create
@customer = Customer.new(params[:customer])
@customer.agents.create(customer_id: @customer.id, house_id: params[:house_id])
@customer.save
end
Ogólnie jestem zdezorientowany, jak dodawać rekordy w has_many :through
tabeli?