我对ruby on rails和编程都很陌生。我正在尝试开发一个应用程序,但我现在被困住了。我正在看http://railscasts.com/episodes/196-nested-model-form-part-1来制作嵌套的模型表单,但我遇到了错误。我的问题详情如下;
我有雇主模型,雇主模型has_many面试,面试模型has_many customquestions。我正在尝试创建一个表单,通过该表单我将收集信息以创建面试。虽然我做了所有必要的处理,但当我提交表格时,它会引发错误,说“Customquestions面试不能为空”。我确信这是因为我错过了面试控制器中的一些代码。您可以在下面看到我的面试控制器和我用来提交信息的表单模板。
面试控制员
class InterviewsController < ApplicationController
before_filter :signed_in_employer
def create
@interview = current_employer.interviews.build(params[:interview])
if @interview.save
flash[:success] = "Interview created!"
redirect_to @interview
else
render 'new'
end
end
def destroy
end
def show
@interview = Interview.find(params[:id])
end
def new
@interview = Interview.new
3.times do
customquestion = @interview.customquestions.build
end
end
end
我用来提交信息的表格:
<%= provide(:title, 'Create a new interview') %>
<h1>Create New Interview</h1>
<div class="row">
<div class="span6 offset3">
<%= form_for(@interview) do |f| %>
<%= render 'shared/error_messages_interviews' %>
<%= f.label :title, "Tıtle for Interview" %>
<%= f.text_field :title %>
<%= f.label :welcome_message, "Welcome Message for Candidates" %>
<%= f.text_area :welcome_message, rows: 3 %>
<%= f.fields_for :customquestions do |builder| %>
<%= builder.label :content, "Question" %><br />
<%= builder.text_area :content, :rows => 3 %>
<% end %>
<%= f.submit "Create Interview", class: "btn btn-large btn-primary" %>
<% end %>
</div>
</div>
在采访模型中,我使用了accepts_nested_attributes_for :customquestions
面试模型
class Interview < ActiveRecord::Base
attr_accessible :title, :welcome_message, :customquestions_attributes
belongs_to :employer
has_many :customquestions
accepts_nested_attributes_for :customquestions
validates :title, presence: true, length: { maximum: 150 }
validates :welcome_message, presence: true, length: { maximum: 600 }
validates :employer_id, presence: true
default_scope order: 'interviews.created_at DESC'
end
答案 0 :(得分:0)
自定义项模型中会引发验证错误,因为(我假设)它validates :interview_id
。问题是,在保存父对象(采访)之前,才会设置interview_id,但在保存采访之前会运行自定义项的验证。
您可以通过在自定义项目模型中向:inverse_of=> :customquestions
添加选项belongs_to :interview
,让cusomtquestions了解此依赖关系。