3
comment ajouter des enregistrements à has_many: par association dans les 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 Comment puis-je ajouter au Agentsmodèle pour Customer? Est-ce le meilleur moyen? Customer.find(1).agents.create(customer_id: 1, house_id: 1) Ce qui précède fonctionne …