在我的 rails 4 应用程序中,我有一个三重嵌套路由:
devise_for :users do
resources :foo do
resources :marflar
end
end
我有一个表格用于创建一个带有嵌入式 Marflar 对象的新 Foo:
<%= form_for(@foo) do |f| %>
<%= f.text_field :foo_attr %>
<%= f.fields_for :marflars_attributes do |marflars_form| %>
<%= marflars_form.text_field :marflar_attr %>
<% end %>
<%= f.submit %>
<% end %>
但是当我提交表格时,我得到:
TypeError in FoosController#create
no implicit conversion of Symbol into Integer
我的 Foo 控制器的相关部分如下所示:
def new
@foo = current_user.foos.build
@foo.marflars.build
end
def create
@foo = Foo.new(foo_params)
if @foo.save
redirect_to @foo
else
render action: 'new'
end
end
..
def foo_params
params.require(:foo).permit(:foo_attr, marflars_attributes: [:marflar_attr])
end
我的模型如你所料:
class Foo < ActiveRecord::Base
belongs_to :user
has_many :marflars, dependent: :destroy
accepts_nested_attributes_for :marflars, allow_destroy: true
end
class Marflar < ActiveRecord::Base
belongs_to :foo
end
为什么这行不通?它快把我逼疯了。我正在考虑切换到表单对象,但我想先让它工作。