使用 collection_select 通过 has_many 和 belongs_to 关联在预订中保存两个 类 的 ID 在保存时抛出错误 'must exist'

Using collection_select for saving ID of two classes in a booking through has_many and belongs_to association throws error 'must exist' when saving

我正在构建一个用于学习的简单预订应用程序 rails。我搭建了人员、汽车和预订。

现在,当我尝试创建预订时,我得到了

2 errors prohibited this booking from being saved:

  • Person must exist
  • Car must exist

代码

car.rb

class Car < ApplicationRecord
  has_many :bookings

  def brand_with_licence_plate
    "#{brand} #{licence_plate}"
  end

end

person.rb

class Person < ApplicationRecord
  has_many :bookings

  def complete_name
    "#{first_name} #{last_name}"
  end

end

bookings.rb

class Booking < ApplicationRecord
  belongs_to :Person
  belongs_to :Car
end

我像这样添加了 ID 列:

class AddItemsToBookings < ActiveRecord::Migration[6.1]
  def self.up
    add_column :bookings, :car_id, :integer
    add_column :bookings, :person_id, :integer
  end
end

我已将以下内容添加到 _form.html.erb

 <div class="field">
    <%= form.label :Person %>
    <%= form.collection_select(:person_id, Person.all, :id, :complete_name) %>
  </div>

  <div class="field">
    <%= form.label :Car %>
    <%= form.select :car_id, options_from_collection_for_select(Car.all, 'id','brand_with_licence_plate') %>
  </div>

并添加到 bookings_controller.rb

def booking_params
      params.require(:booking).permit(:start, :end, :person_id, :car_id)
end

我查看了 并尝试按照一个答案中的说明更改为 <%= form.select :car_id, options_from_collection_for_select(Car.all, 'id', 'brand_with_licence_plate') %>,但给了我同样的错误。

当我查看 documentation 时,一切似乎都很好。

似乎缺少一些基本的东西。任何解决此问题的想法都将受到赞赏。


更新:

我删除了整数 id 列和 运行 新迁移

class AddReferencesToBookingForPersonAndCar < ActiveRecord::Migration[6.1]
  def change
    add_reference :bookings, :people, foreign_key: true
    add_reference :bookings, :cars, foreign_key: true
  end
end

并调整了参数的权限。

我觉得你的代码不太好。我会把它改成:

class Booking < ApplicationRecord
  belongs_to :person
  belongs_to :car
end

主要是person和car都是小写的。另外,我注意到在您的迁移过程中,您以复数形式制造了汽车。应该是:

class AddReferencesToBookingForPersonAndCar < ActiveRecord::Migration[6.1]
  def change
    add_reference :bookings, :person, foreign_key: true
    add_reference :bookings, :car, foreign_key: true
  end
end

belongs_to :car 需要一个 car_id 并且看起来迁移正在创建一个 cars_id。

如果您post完整的控制器代码,提供更多帮助会更容易。