Форма с использованием collection_select, действие edit работает полностью, а create - нет
Я использую следующую форму и контроллер. Если я создаю новое уведомление, все сохраняется, кроме campus_id.
Кажется, он дает неправильный параметр кампуса, хотя я выбираю другой из выпадающего списка. Если после этого я отредактирую ту же запись, она будет сохранена? Что происходит и как мне это исправить?
Эта же форма используется для редактирования и создания действий. (это частичное)
Возможно, стоит отметить, что я использую неглубокие маршруты для кампуса (has_many) и уведомлений (own_to).
routes.rb
shallow do
resources :campus do
resources :notifications
end
end
Форма:
<%= form_for [@campus,@notification] do |f| %>
<% if @notification.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@notification.errors.count, "error") %> prohibited this notification from being saved:</h2>
<ul>
<% @notification.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :post %><br>
<%= f.text_area :post %>
</div>
<div class="field">
<%= f.label :campus %><br>
<%= f.collection_select(:campus_id, Campus.all.order('name ASC'), :id, :name, prompt: true) %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
Это контроллер:
class NotificationsController < ApplicationController
before_action :set_notification, only: [:show, :edit, :update, :destroy]
before_action :set_campus, only: [:index, :new, :create]
def index
@notifications = @campus.notification
end
def show
end
def new
@notification = @campus.notification.new
end
def edit
end
def create
@notification = @campus.notification.new(notification_params)
respond_to do |format|
if @notification.save
format.html { redirect_to @notification, notice: 'Notification was successfully created.' }
format.json { render action: 'show', status: :created, location: @notification }
else
format.html { render action: 'new' }
format.json { render json: @notification.errors, status: :unprocessable_entity }
end
end
end
def update
respond_to do |format|
if @notification.update(notification_params)
format.html { redirect_to @notification, notice: 'Notification was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: 'edit' }
format.json { render json: @notification.errors, status: :unprocessable_entity }
end
end
end
def destroy
@notification.destroy
respond_to do |format|
format.html { redirect_to campu_notifications_url(1) }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_notification
@notification = Notification.find(params[:id])
end
def set_campus
@campus = Campus.find(params[:campu_id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def notification_params
params.require(:notification).permit(:post, :campus_id)
end
end
Если я смотрю журнал, я вижу неправильный параметр
Запущен POST "/campus/1/notifications" для 84.193.153.106 в 2014-09-29 18:29:33 +0000 Запущен POST "/campus/1/notifications" для 84.193.153.106 в 2014-09-29 18:29: 33 +0000 Обработка с помощью NotificationsController#create as HTML Обработка с помощью NotificationsController # create как HTML Параметры: {"utf8"=>"_", "authenticity_token"=>"oNSlEFeukwEj2hIAT89wFdIYwjHO5c8lzBlCqMyk31Y=" "post "tification = > "sdqfdsfd", "campus_id" => "3"}, "commit" => "Создать уведомление", "campu_id" => "1"} Параметры: {"utf8"=>"_", "authenticity_token"=>"oNSlEFeukwEj2hIAT89wFdIYwjHO5c8lzBlCqMyk31Y=", "tification"=>{"post"=>"sdqfdsfd", "campus_id"=>"3"}, "commit"=>" Создать уведомление "," campu_id "}>> 1 Загрузка кампуса (0,4 мс) ВЫБЕРИТЕ "кампус".* ИЗ "кампуса" ГДЕ "кампус". "Id" = $1 LIMIT 1 [["id", "1"]] Загрузка кампуса (0,4 мс) ВЫБРАТЬ "кампус".* ОТ "кампуса" ГДЕ "кампус". "Id" = $ 1 ПРЕДЕЛ 1 [["id", "1"]] (0,1 мс) НАЧАЛО (0,1 мс) НАЧАТЬ SQL (28,6 мс) ВСТАВИТЬ В "уведомления" ("campus_id", "creation_at", "post", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["campus_id", 1], ["creat_at", понедельник, 29 сентября 2014 18:29:34 UTC +00:00], ["post", "sdqfdsfd"], ["updated_at", понедельник, 29 сентября 2014 18:29:34 UTC +00:00]] SQL (28,6 мс) INSERT INTO "уведомления" ("campus_id", "made_at", "post", "updated_at") ЗНАЧЕНИЯ ($ 1, $ 2, $ 3, $ 4) ВОЗВРАЩЕНИЕ "id" [["campus_id", 1], ["creation_at", понедельник, 29 сентября 2014 18:29:34 UTC +00: 00], [ "post", "sdqfdsfd"], ["updated_at", понедельник, 29 сентября 2014 18:29:34 UTC +00:00]] (3,5 мс) COMMIT (3,5 мс) COMMIT
1 ответ
Возможно, хотите изменить свой new
а также create
такие действия:
def new
@notification = @campus.notifications.build
end
def create
@notification = @campus.notifications.build(notification_params)
respond_to do |format|
if @notification.save
format.html { redirect_to @notification, notice: 'Notification was successfully created.' }
format.json { render action: 'show', status: :created, location: @notification }
else
format.html { render action: 'new' }
format.json { render json: @notification.errors, status: :unprocessable_entity }
end
end
end
campus.build_notification
будет создавать уведомление о том, что belongs_to
campus
, С помощью new
потребует от вас пройти notification[campus_id]
как часть ваших параметров.