Rails 3 - 构建不保存到数据库(Railscast 196)

时间:2011-06-04 07:09:12

标签: ruby-on-rails-3 activerecord nested-attributes railscasts

我跟随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

以下是发送到我的create方法的参数:

    {"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"}}`

这表明params正在正确发送......我想。问题模型只有一个“内容”文本列。

任何帮助表示赞赏:)

2 个答案:

答案 0 :(得分:0)

假设:

  1. 您的表单设置正确,
  2. 您的服务器显示您的数据正在发送到新操作,
  3. 您的模型不包含阻止保存的回调,
  4. 尝试改变:

    @form = @app.forms.create(params[:form])
    

    @form = @app.forms.build(params[:form])
    

答案 1 :(得分:0)

好的想通了。原来我应该多看一下我的控制台了。当尝试将问题插入数据库时​​,它挂起的错误是“警告:无法批量分配受保护的属性: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