3
has_many에 레코드를 추가하는 방법 : rails의 연관을 통해
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 Agents모델에 Customer어떻게 추가 합니까? 이것이 최선의 방법입니까? Customer.find(1).agents.create(customer_id: 1, house_id: 1) 위의 내용은 콘솔에서 잘 작동하지만 실제 응용 프로그램에서이를 …