我有 3 个模型,它们组成了一个多通关联。
型号代码如下:
ItemAttrVal
模型(转换表)
class ItemAttrVal < ActiveRecord::Base
belongs_to :attr_name
belongs_to :registry_item
end
RegistryItem
模型
class RegistryItem < ActiveRecord::Base
has_many :item_attr_vals
has_many :attr_names, :through => :item_attr_vals
accepts_nested_attributes_for :item_attr_vals, :allow_destroy => :true
end
AttrName
模型
class AttrName < ActiveRecord::Base
has_many :item_attr_vals
has_many :registry_items, :through => :item_attr_vals
end
RegistryItem
用途fields_for
如下:
<%= item.fields_for :item_attr_vals do |iav| %>
<%= render 'item_attr_val_fields', :f => iav %>
<% end %>
在部分中,它看起来像这样:
<% logger.debug "object type is: #{f.object}"%>
<% logger.debug "some details are: #{f.object.attr_name_id}--"%>
<%= f.select :attr_name_id, options_from_collection_for_select(AttrName.all,"id","description"), :selected => f.object.attr_name_id, :prompt => "Select an attribute" %>
<%= f.text_field :raw_value %> <br />
第 2 条调试线是我的问题所在,但它首先与第 3 线有关。在那里,我试图为下拉选择字段提供“预选”值。这样当用户编辑 RegistryItem 时,将显示他们之前选择的 AttrName。
我正在尝试使用f.object.attr_name_id
来设置该值,但是它实际上并没有正确选择先前选择的值,而是直接转到第一个。
然后第一条两条调试线是我试图确保我的f.object
方法有效......
当我查看日志时,我看到以下内容:
object type is: #<ItemAttrVal:0x007fb3ba2bd980>
some details are: --
基本上,第一行显示我正在获取 ItemAttrVal 第二行似乎没有检索到任何信息。
我还使用调试器进行了检查,在那里,我可以使用它display f.object.attr_name_id
来向我展示我期望的确切值......
这种问题归结为两个问题......
- 为什么我无法检索 的值
f.object
? - 我是否试图做错第 3 行(
<%= f.select :attr_name_id, options_from_collection_for_select(AttrName.all,"id","description"), :selected => f.object.attr_name_id, :prompt => "Select an attribute" %>
),实际上有更好的方法吗?
提前致谢!