在我的 Ruby on Rails 应用程序中,我正在创建一些数据并将其保存在 db 中,但现在我需要获取记录 id(保存时)。我需要获取此 id,并且对于此记录,在其他表中创建为此 id 绑定的记录数组(在模型中我有关联)。
PriceList.create(:distributor_id => distributor_id, :brand => brand, :article_nr => num_catalog, :price => price, :quantity => quantity, :waittime => waittime)
class PriceList < ActiveRecord::Base
has_many :cross_lists
belongs_to :distributor
end
class CrossList < ActiveRecord::Base
belongs_to :price_list
end
它可以看作是两个问题,但主要是第一部分。