Rails: create through-record via association
问题 If anyone has a better title, please let me know :p I have the following models: class Car has_many :car_drivers has_many :drivers, :through => :car_drivers end class Driver has_many :car_drivers has_many :cars, :through => :car_drivers end class CarDriver belongs_to :car belongs_to :driver end Now I want to create a new Driver via Car, but the record in the join-table (car_drivers) should be created as well. I tried the following, but while the car record is created, the join-table record is