1
可以說我有兩個型號Rails通過collection_ids創建模型如何防止重新關聯?
class Car < ActiveRecord::Base
has_many :wheels
end
class Wheel < ActiveRecord::Base
belongs_to :car
end
租車將租車創建與wheel_ids = [1,2,3])
我將如何檢查是否存在車輪沒有關聯到另一輛車已經?