Атрибуты вложенной модели + неработающая форма мастера
Я делаю приложение на основе урока Railscast 346(Wicked Gem) и 196(вложенная модель). Я пытаюсь объединить эти 2 вместе, и я застрял, потому что сильные атрибуты параметров не сохраняются.
Итак, мое приложение выглядит так: у меня есть модель пользователя, работы и образования.
user.rb:
has_many :educations, dependent: :destroy
has_many :works, dependent: :destroy
accepts_nested_attributes_for :educations, :works
education.rb
belongs_to :user
work.rb
belongs_to :user
А затем я сгенерировал злой контроллер мастера, который я назвал UserStepsController:
include Wicked::Wizard
steps :education, :work
def show
@user = current_user
@education = @user.educations.build
@work = @user.works.build
render_wizard
end
def update
@user = current_user
case step
when :education
@education = @user.educations.build
@education.update_attributes(user_params)
render_wizard @education
when :work
@work = @user.works.build
@work.update_attributes(user_params)
render_wizard @work
end
end
метод сильных параметров:
def user_params
params.require(:user).permit(:first_name, :last_name, :email, :password, :password_confirmation, :county_id, :area_id, :client, educations: [:school_name, :degree, :year_started, :year_finished], works: [:company_name, :work_title, :date_started, :date_finished])
end
Мой вид образования и этапов работы выглядит следующим образом:
<h1>Education</h1>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<%= simple_form_for @user, url:wizard_path do |f| %>
<%= f.simple_fields_for :educations do |b| %>
<%= b.input :school_name %>
<%= b.input :degree %>
<%= b.input :year_started %>
<%= b.input :year_finished %>
<% end %>
<%= f.button :submit, "Continue" %>
<% end %>
</div>
<h1>Work</h1>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<%= simple_form_for @user, url:wizard_path do |f| %>
<%= f.simple_fields_for :works do |b| %>
<%= b.input :company_name %>
<%= b.input :work_title %>
<%= b.input :date_started %>
<%= b.input :date_finished %>
<% end %>
<%= f.button :submit, "Continue" %>
<% end %>
</div>
Теперь, когда я нахожусь в образовательной или рабочей странице шага, после нажатия продолжить, я получаю это:
Started PATCH "/user_steps/education" for ::1 at 2015-02-26 18:03:27 +0000
Processing by UserStepsController#update as HTML
Parameters: {"utf8"=>"V", "authenticity_token"=>"/UxsLRNrLDxEeVHLaFmRjySveLty2
UXM+x8sA058o3gdLicRGCHRSV+qBkbJtHFNtX5WXJVhEQOKFMGdKyTLhg==", "user"=>{"educatio
ns_attributes"=>{"0"=>{"school_name"=>"ssddaddsa", "degree"=>"sddssd", "year_sta
rted(1i)"=>"2015", "year_started(2i)"=>"2", "year_started(3i)"=>"26", "year_fini
shed(1i)"=>"2015", "year_finished(2i)"=>"2", "year_finished(3i)"=>"26"}}}, "comm
it"=>"Continue", "id"=>"education"}
User Load (1.0ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 140 LIM
IT 1
Unpermitted parameter: educations_attributes
(0.0ms) BEGIN
SQL (1.0ms) INSERT INTO `educations` (`user_id`, `created_at`, `updated_at`)
VALUES (140, '2015-02-26 18:03:27.130368', '2015-02-26 18:03:27.130368')
(5.0ms) COMMIT
(0.0ms) BEGIN
(1.0ms) COMMIT
Как видите: "Недопустимый параметр: educations_attributes". Атрибуты school_name, степень, date_started и date_finished не сохраняются в базе данных. Я уже провел исследование, как я могу это исправить, но у меня ничего не получается. Я не знаю, что делать сейчас.
Любой ответ или помощь будут очень цениться. Кстати, я новичок в рельсах. Благодарю.
1 ответ
Когда вы используете accepts_nested_attributes_for, вы должны указать свои атрибуты, чтобы внести их в белый список: educations_attributes и works_attributes (как показано в API)
def user_params
params.require(:user).permit(
:first_name, :last_name, :email, :password,
:password_confirmation, :county_id, :area_id, :client,
educations_attributes: [:school_name, :degree, :year_started, :year_finished],
works_attributes: [:company_name, :work_title, :date_started, :date_finished]
)
end