下面是railscast 196。我有两个层次的联想。应用程序->表格->问题。这是表单控制器中的新操作。
def new
@app = App.find(params[:app_id])
@form = Form.new
3.times {@form.questions.build }
end
视图显示所有3个问题都很好,我可以提交表格…但没有任何问题插入数据库。这是我的创建动作
def create
@app = App.find(params[:app_id])
@form = @app.forms.create(params[:form])
respond_to do |format|
if @form.save
format.html { redirect_to(:show => session[:current_app], :notice => 'Form was successfully created.') }
format.xml { render :xml => @form, :status => :created, :location => @form }
else
format.html { render :action => "new" }
format.xml { render :xml => @form.errors, :status => :unprocessable_entity }
end
end
end
以下是发送到我的创建方法的参数:
{"commit"=>"Create Form",
"authenticity_token"=>"Zue27vqDL8KuNutzdEKfza3pBz6VyyKqvso19dgi3Iw=",
"utf8"=>"✓",
"app_id"=>"3",
"form"=>{"questions_attributes"=>{"0"=>{"content"=>"question 1 text"},
"1"=>{"content"=>"question 2 text"},
"2"=>{"content"=>"question 3 text"}},
"title"=>"title of form"}}`
这表明参数发送正确。。。我想。问题模型只有一个"内容"文本列。
感谢任何帮助:)
假设:
- 你的表格设置好了
- 您的服务器显示您的数据正在发送到新操作,并且
- 您的模型不包含阻止保存的回调
尝试更改:
@form = @app.forms.create(params[:form])
至
@form = @app.forms.build(params[:form])
Ok想明白了。原来我应该多看看我的控制台。在尝试将问题插入数据库时,它挂起的错误是"警告:无法批量分配受保护的属性:questions_attributes"。将其添加到可访问的属性中就成功了。
class Form < ActiveRecord::Base
belongs_to :app
has_many :questions, :dependent => :destroy
accepts_nested_attributes_for :questions
attr_accessible :title, :questions_attributes
end