0

我有 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来向我展示我期望的确切值......

这种问题归结为两个问题......

  1. 为什么我无法检索 的值f.object
  2. 我是否试图做错第 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" %>),实际上有更好的方法吗?

提前致谢!

4

2 回答 2

0

你需要在你的 options_from_collection_for_select 中使用 params[:attr_name_id]

<%= f.select :attr_name_id, options_from_collection_for_select(AttrName.all,"id","description", params[:attr_name_id].to_i), :prompt => "Select an attribute" %>

希望能帮助到你

于 2013-03-16T15:10:38.073 回答
0

原来我放:selected错地方了...

原来的:

<%= 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.select :attr_name_id, options_from_collection_for_select(AttrName.all,"id","description", f.object.attr_name_id), :prompt => "Select an attribute" %>

修复解决了我的问题,属性名称现在按预期显示以前保存的属性。

它仍然没有回答我关于为什么我无法打印出 f.object 的值的原始查询,但至少原始问题得到了解决。

于 2013-03-16T15:48:19.000 回答