«has-many-through» 태그된 질문

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) 위의 내용은 콘솔에서 잘 작동하지만 실제 응용 프로그램에서이를 …

5
Has_many 연관을 사용하여 FactoryGirl에서 공장을 설정하는 방법
내가 잘못된 방식으로 설정하는 경우 누군가 말해 줄 수 있습니까? has_many.through 연결이있는 다음 모델이 있습니다. class Listing < ActiveRecord::Base attr_accessible ... has_many :listing_features has_many :features, :through => :listing_features validates_presence_of ... ... end class Feature < ActiveRecord::Base attr_accessible ... validates_presence_of ... validates_uniqueness_of ... has_many :listing_features has_many :listings, :through => :listing_features end …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.