我尝试创建一个家具对象,它与has_many_and_belongs_to与商店有关,这是我的模型:
class Furniture < ActiveRecord::Base
attr_accessible :area, :description, :name, :size
has_and_belongs_to_many :stores
end
我的问题是我不知道如何创建新家具,因为我尝试将家具与一个或多个商店与复选框相关联,但我收到此错误:undefined method merge for #<Store:0x007ff16ae27e40>
。
这是我对表单的看法,我的控制器有new和create action:
查看:
<%= form_for @furniture do |f| %>
<%= f.label :name %>
<%= f.text_field :name %> <br><br>
<%= f.label :description %>
<%= f.text_field :description %> <br><br>
<%= f.label :size %>
<%= f.text_field :size %> <br><br>
<% @store.each do |store| %>
<div>
<%= f.check_box :stores, store %>
<%= store.name %>
</div>
<% end %>
<%= f.submit %>
<% end %>
控制器:
def new
@furniture = Furniture.new
@store = Store.order('name ASC')
end
def create
@furniture = Furniture.create(params[:furniture])
redirect_to admins_path
end
我该如何解决?你有什么建议用这种关系创建一个新的对象??
非常感谢
修改: 我在家具和商店之间有一个连接表
答案 0 :(得分:1)
has_and_belongs_to关联添加方法collection_singular_ids=
,对于当前案例,该方法将为@furniture.store_ids=
。根据文件
collection_singular_ids =方法使集合仅包含由提供的主键值标识的对象,通过适当添加和删除。
因此,您可以使用此想法将商店添加到您的家具中。替换
<% @store.each do |store| %>
<div>
<%= f.check_box :stores, store %>
<%= store.name %>
</div>
<% end %>
与
<% @store.each do |store| %>
<div>
<%= f.check_box :store_ids, {:multiple => true}, store.id, nil %>
<%= store.name %>
</div>
<% end %>