Я пытаюсь создать роли пользователя для моего пользователя, используя форму,
<%= form_for @user do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :username %><br />
<%= f.text_field :username %>
</p>
<p>
<%= f.label :email, "Email Address" %><br />
<%= f.text_field :email %>
</p>
<p>
<%= f.label :password %><br />
<%= f.password_field :password %>
</p>
<p>
<%= f.label :password_confirmation, "Confirm Password" %><br />
<%= f.password_field :password_confirmation %>
</p>
<% # f.select :roles, Role.all.map {|r| [r.title]} %>
<% Role.all.each do |role| %>
<div>
<%= check_box_tag :role_ids, role.id, @user.roles.include?(role), :name => 'user[role_ids][]' -%>
<%= label_tag :role_ids, role.title -%>
</div>
<% end -%>
<p><%= f.submit (@user.new_record? ? "Sign up" : "Update"), :id => :sign_up %></p>
<% end %>
Это связь, которая у меня есть в моей модели
class user < ActiveRecord::Base
has_many :assignments
has_many :roles, :through => :assignments
end
class assignment < ActiveRecord::Base
belongs_to :user
belongs_to :role
end
class role < ActiveRecord::Base
has_many :assignments
has_many :users, :through => :assignments
end
Как создать назначение между пользователем и ролью, используя форму, которую я представил в начале?
Мое действие создания в моем пользовательском контроллере выглядит так:
def create
@user = User.new(params[:user])
if @user.save
session[:user_id] = @user.id
render :action => 'dashboard'
else
render :action => 'new'
end
end
При отправке формы я получаю сообщение об ошибке:
ActiveRecord :: AssociationTypeMismatch в UsersController # create
Ожидается роль (# 70331681817580), получена строка (# 70331650003400)
Request
Parameters:
{"utf8"=>"✓",
"authenticity_token"=>"WHpOW+DmymZ2pWmY9NHSuodf2vjyKdgMNZcc8NvCNa0=",
"user"=>{"username"=>"ioio",
"email"=>"ioio@ioio.com",
"password"=>"[FILTERED]",
"password_confirmation"=>"[FILTERED]",
"roles"=>["2"]}, #### <<< ==== This is the checkbox that I selected for this request.
"commit"=>"Sign up"}
Любая помощь приветствуется.