如何在 rails 中多次插入数据

How can I multiple insert the data in rails

我想在rails中插入多个数据。我正在使用 postgresql,场景是当表单提交时传递客户名称、电子邮件和一些个人信息,然后还传递带有日期的期望地点以及他们想要的设施(例如游泳投票、台球投票等)。 ).在我的后端,我将查询:

venue = Venue.find(theVenue_id)

book = venue.books.new(name: client_name, email: client_email and etc)

我的问题是,如果选择了很多便利设施,我该如何在 amenity_books 中插入数据?

我试过这样的东西。

ex. amenities_id_choosen = [1,3]
if book.save
   amenities_id_choosen.each do |x|
    amenity = Amenitiy.find(x)
    amenity_book = amenity.amenity_books.create(venue_id: venue.id)
end

我知道这不是插入数据的好主意,但这是我最后的选择。有没有人知道如何在具有不同数据的 2 个模型中插入多个数据。

型号

class Amenity < ActiveRecord::Base
    has_many :categorizations
    has_many :venues, through: :categorizations

    has_many :amenity_books
    has_many :books, through: :amenity_books
end

class Venue < ActiveRecord::Base
    has_many :categorizations
    has_many :amenities, through: :categorizations
end

class Categorization < ActiveRecord::Base
    belongs_to :venue
    belongs_to :amenity
end

class Book < ActiveRecord::Base
    belongs_to :venue
end

class AmenityBook < ActiveRecord::Base
    belongs_to :amenity
    belongs_to :venue
    belongs_to :book
end

这是一个改进版本:

amenities_id_choosen = [1,3]

if book.save
  Amenitiy.find(amenities_id_choosen).each do |amenity|
    amenity.amenity_books.create(venue_id: venue.id)
  end
end

这将导致一个 SELECT 查询来查找所有选定的便利设施,并为每个选定的便利设施执行一个 INSERT 查询。


另一种选择是更改数据模型,AmenityBook 真的需要场地吗?因为看起来场地已经通过 Book 模型定义了。

这里有一个建议:

class Book < ActiveRecord::Base
    belongs_to :venue
    has_many :amenity_books
    has_many :amenities, through: :amenity_books
end

class AmenityBook < ActiveRecord::Base
    belongs_to :amenity
    belongs_to :book
    has_one :venue, through: :book
end

创建包含许多设施的预订的代码:

amenities_id_choosen = [1,3]
book.amenity_ids = amenities_id_choosen

if book.save
  # success !
end