我应该如何将rails和simple_form用于嵌套资源



我试图同时用另一个嵌套资源创建一个资源。我使用的是Rails4和simple_form 3.0.0rc。这是我的代码。

型号:

class User < ActiveRecord::Base
  has_one :profile
  accepts_nested_attributes_for :profile
end
class Profile < ActiveRecord::Base
  belongs_to :user
end

控制器:

class UsersController < ApplicationController
  def new
    @user = User.new
    @user.build_profile
  end
  def create
    user = User.new user_params
    user.save
    redirect_to root_url
#    @par =params
  end
  private
    def user_params
      params.require(:user).permit(:email, profile_attributes: [:name])
    end
end

视图(新用户的表单)

<%= simple_form_for @user do |f| %>
  <%= f.input :email %>
  <%= simple_fields_for :profile do |p| %>
    <%= p.input :name %>
  <% end %>
  <%= f.submit %>
<% end %>

当我提交表单时,create操作将接收此params:

{"utf8"=>"✓",
"authenticity_token"=>"dJAcMcdZnrtTXVIeS2cNBwM+S6dZh7EQEALZx09l8fg=", 
"user"=>{"email"=>"vasily.sib@gmail.com"},
"profile"=>{"name"=>"Vasily"},
"commit"=>"Create User",
"action"=>"create",
"controller"=>"users"}

调用user_params后,剩下的只有

{"email"=>"vasily.sib@gmail.com"}

而且,正如您所看到的,profile没有任何内容,因此不会创建任何配置文件。

我做错了什么?

使用f.simple_fields_for而不是simple_fields_for:

<%= f.simple_fields_for :profile do |p| %>
    <%= p.input :name %>
<% end %>

在我的例子中,我有一个对象"book",它属于"tour"one_answers"tour"has_many"books"。

在方法"new"中的"BookController"中,我找到tour并初始化图书对象:

@tour = Tour.find(params[:tour_id])

@book = Book.new

这是创建一本书的部分表单:_form.html.erb

<%= simple_form_for [@tour, @book] do |f| %>
  <%= f.input :name, label: "Name"%>
  <%= f.input :NoReservations, label: "Number of Reservations" %>
  <%= f.input :email, label: "Email" %>
  <h3>Num of available places</h3>
  <%= f.button :submit %>
<% end %>

相关内容

  • 没有找到相关文章

最新更新