has-many-through पर टैग किए गए जवाब

3
has_many में रिकॉर्ड कैसे जोड़ें: रेल में एसोसिएशन के माध्यम से
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
Factory_irl में कारखाना कैसे स्थापित करें has_many एसोसिएशन के साथ
क्या कोई मुझे बता सकता है कि क्या मैं सेटअप के बारे में गलत तरीके से जा रहा हूं? मेरे पास निम्नलिखित मॉडल हैं जिनमें 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 …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.