0

我有一个 3 列连接表,它为 3 个不同的 HABTM 模型存储 3 个 ID。

楷模

# ProductGrade.rb
has_and_belongs_to_many :vendors, :join_table => "item_codes_product_grades_vendors"
has_and_belongs_to_many :item_codes, :join_table => "item_codes_product_grades_vendors"

# Vendor.rb
has_and_belongs_to_many :prouduct_grades, :join_table => "item_codes_product_grades_vendors"
has_and_belongs_to_many :item_codes, :join_table => "item_codes_product_grades_vendors"

# ItemCode.rb
has_and_belongs_to_many :vendors, :join_table => "item_codes_product_grades_vendors"
has_and_belongs_to_many :product_grades, :join_table => "item_codes_product_grades_vendors"

我只是想在用户更新 Vendor 模型时记录 3 部分关联。

Vendors_Controller.rb

def update
  i = ItemCode.find(params[:vendor][:item_codes].to_i)
  i.vendors << Vendor.find(params[:id])
  i.product_grades << ProductGrade.find(params[:product_grade_id])

  redirect_to product_grade_vendor_path
end

这正确地保存了连接表中的 3 列数据,但是它创建了两个不同的记录,如下所示:

-- *product_grade_id* -- *vendor_id* -- *item_code_id* --
---------------------------------------------------------
--                12  --       NULL  --             4  --
--                12  --          6  --           NULL --

我意识到这可能是一个愚蠢的语法问题,但我只想知道如何让控制器将这两个值都保存在 1 条记录中。

谢谢您的帮助!

4

1 回答 1

1

考虑使用has_many :through =>而不是 HABTM。ActiveRecord 不能处理 HABTM 中的连接表,但它可以处理has_many :through =>. 使用后一个选项,连接表将表示为一个模型,您将获得如何操作、更改、更新等工具。

我建议仅在加入两个模型而不是三个模型时使用 HABTM。然后,您的更新方法将大大简化。

def update
  Association.create!(:product_grade_id => "...", :vendor_id => "...", :item_code_id => "..."

  redirect_to wherever_path
end
于 2012-10-03T16:11:52.000 回答