Почему мои параметры модели считаются неопределенной локальной переменной?:
У меня есть приложение с тремя моделями. Основная модель имеет_ одну из двух других моделей, а вторичная модель принадлежит_ основной модели.
Первая модель имеет два представления, каждое из которых имеет форму, которая заполняет первичную модель и часть ее соответствующей вторичной модели. Первое представление называется новым, и я просто создал другое представление, озаглавленное new2, так как они оба заполняют базу данных первичной модели.
В обеих моих формах я имею:
<%= f.fields_for @primarymodel.secondary_model do |secondary_model_field| %>
У меня нет контроллера для вторичных моделей, и в своем контроллере основной модели я определил параметры, чтобы включить все атрибуты из всех моделей.
Когда я пытаюсь отправить формы в режиме разработки, я получаю сообщение об ошибке, что мои параметры являются "неопределенной локальной переменной".
Параметры определяются в контроллере.
Создание в контроллере:
def create
@primarymodel= Primarymodel.create(primarymodel_params)
@primarymodel.save
end
Есть ли причина, по которой params будет отображаться как неопределенная переменная?
Обновление: вот весь мой контроллер
class ParticipantsController < ApplicationController
def new
@participant= Participant.new
end
def new2
# @participant= Participant.new
end
def create
@participant = Participant.create(participant_params)
@participant.save
if @participant.save
flash[:success] = "Successfully Registered!"
#email notifes admin of new registration
NotifyMailer.notify_email(@participant).deliver_now
redirect_to '/signup'
end
def edit
end
def update
end
def show
end
def index
end
private
def participant_params
params.require(:participant).permit(:first_name, :last_name, :gender, :email, :birthdate, :phone, :street_name, :city, :state, :zip, :baptism_date, :baptism_importance, :christian_story, :questions, :nationality, :religion, :need_ride,
:has_spouse, :spouse_name, :english_level, :expectations, :length_of_stay, :exact_length, :volunteer_id, :matched, :returned_home)
end
end
end
Вот ошибка сервера:
Started POST "/participants" for 127.0.0.1 at 2019-01-14 21:15:38 -0600
ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
Processing by ParticipantsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"oMlCbilHzH18I9WmwqweShDLa3vhPy8d+t4cdsU8fSR2ReijiwMhIOmdi0vzQfdsO4rwD3OqGRR7ZvLshOuFtg==", "participant"=>{"first_name"=>"J", "last_name"=>"W", "gender"=>"Male", "email"=>"j@xxxx.com", "phone"=>"xxxxxxxxxx", "street_name"=>"41 Belling", "city"=>"Nashville", "state"=>"Tennessee", "zip"=>"", "role"=>"Reader", "student_details"=>{"nationality"=>"", "religion"=>"", "birthdate"=>"", "need_ride"=>"Yes", "has_spouse"=>"married", "spouse_name"=>"", "english_level"=>"Low", "expectations"=>"", "length_of_stay"=>"Less than 1 Year", "exact_length"=>""}}, "commit"=>"Register"}
Completed 500 Internal Server Error in 445ms (ActiveRecord: 0.0ms)
NameError (undefined local variable or method `participant_params' for #<ParticipantsController:0x0000000008915228>
Did you mean? participant_path
participant_url
participants_path):
app/controllers/participants_controller.rb:11:in `create'
Rendering C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
Rendering C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
Rendered C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.0ms)
Rendering C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
Rendered C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
Rendering C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
Rendered C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms)
Rendered C:/Ruby24-x64/lib/ruby/gems/2.4.0/gems/actionpack-5.0.7.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (1881.1ms)
Это модель:
class Participant < ApplicationRecord
validates :last_name, presence: true
# validates :gender, inclusion: { in: %w(male female) }
validates :nationality, presence: true
validates :phone, presence: true
has_one :volunteer_detail
has_one :reader_detail
end
1 ответ
Взгляни на свой create
метод:
def create
@participant = Participant.create(participant_params)
@participant.save
if @participant.save
flash[:success] = "Successfully Registered!"
#email notifes admin of new registration
NotifyMailer.notify_email(@participant).deliver_now
redirect_to '/signup'
end
Как вы можете видеть, вы не end
метод, у вас есть только end
для if
заявление. Это означает, что при определении других методов, таких как edit
а также participant_params
они определены в рамках create
метод.
Измени свой create
метод, чтобы вы end
оба if
оператор и метод вроде так:
def create
@participant = Participant.create(participant_params)
@participant.save
if @participant.save
flash[:success] = "Successfully Registered!"
#email notifes admin of new registration
NotifyMailer.notify_email(@participant).deliver_now
redirect_to '/signup'
end
end
(Обратите внимание на последний end
у вас в данный момент есть это внизу вашего файла, а не здесь)