class Api::SurveyAnswersController < ApplicationController
def create
# @survey_answer = SurveyAnswer.new(survey_answer_params)
survey_answers = []
survey_id = params[:survey_id]
params[:questions].each do |q|
answer = {survey_id: survey_id, option_ids: [], question_id: q[:id],
title: q[:answer]}
if q[:options].present?
selected_options = q[:answer].split(',')
selected_options.each do |selected_option|
q[:options].each do |option|
if option[:title]== selected_option
answer[:option_ids] << option[:id]
#<todo add break when in this condition
end
end
end
survey_answers << answer
end
end
puts survey_answers
# @survey_answers = SurveyAnswer.create(survey_answers)
if SurveyAnswer.create(survey_answers)
render json: survey_answers
end
end
end
我有一个调查模型,其中有一些问题。每个问题都包含答案。当我尝试通过邮递员命中邮寄请求以插入答案时,它显示505内部服务器错误,并显示消息“每个nil:nilclass的未定义方法”。谁能说出问题所在?
答案 0 :(得分:1)
您正在尝试运行。每个循环一个空对象。
确保两者
params[:questions]
和
q[:options]
不为空(不等于 nil )。
NoMethodError 有时听起来很没有代表性,尤其是在刚开始使用Ruby的情况下。
下次尝试浏览Stackoverflow,因为已经回答here。